@adapty/capacitor 3.16.0 → 3.16.2

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 (281) hide show
  1. package/AdaptyCapacitor.podspec +3 -3
  2. package/Package.swift +1 -1
  3. package/README.md +1 -1
  4. package/dist/esm/adapters.d.ts +16 -0
  5. package/dist/esm/adapters.js +31 -0
  6. package/dist/esm/adapters.js.map +1 -0
  7. package/dist/esm/adapty-emitter.js +2 -2
  8. package/dist/esm/adapty-emitter.js.map +1 -1
  9. package/dist/esm/adapty.d.ts +8 -6
  10. package/dist/esm/adapty.js +40 -78
  11. package/dist/esm/adapty.js.map +1 -1
  12. package/dist/esm/coders/factory.d.ts +6 -0
  13. package/dist/esm/coders/factory.js +11 -0
  14. package/dist/esm/coders/factory.js.map +1 -0
  15. package/dist/esm/coders/parse-onboarding.d.ts +3 -0
  16. package/dist/esm/coders/parse-onboarding.js +4 -0
  17. package/dist/esm/coders/parse-onboarding.js.map +1 -0
  18. package/dist/esm/coders/parse-paywall.d.ts +3 -0
  19. package/dist/esm/coders/parse-paywall.js +4 -0
  20. package/dist/esm/coders/parse-paywall.js.map +1 -0
  21. package/dist/esm/coders/parse.d.ts +5 -0
  22. package/dist/esm/coders/parse.js +5 -0
  23. package/dist/esm/coders/parse.js.map +1 -0
  24. package/dist/esm/default-configs.js +1 -1
  25. package/dist/esm/default-configs.js.map +1 -1
  26. package/dist/esm/index.d.ts +5 -7
  27. package/dist/esm/index.js +3 -5
  28. package/dist/esm/index.js.map +1 -1
  29. package/dist/esm/logger/index.d.ts +2 -0
  30. package/dist/esm/logger/index.js +2 -0
  31. package/dist/esm/logger/index.js.map +1 -0
  32. package/dist/esm/types/adapty-plugin.d.ts +4 -4
  33. package/dist/esm/types/adapty-plugin.js.map +1 -1
  34. package/dist/esm/types/configs.d.ts +2 -2
  35. package/dist/esm/types/configs.js.map +1 -1
  36. package/dist/esm/types/index.d.ts +5 -0
  37. package/dist/esm/types/index.js +6 -0
  38. package/dist/esm/types/index.js.map +1 -0
  39. package/dist/esm/types/inputs.d.ts +1 -0
  40. package/dist/esm/types/inputs.js +2 -0
  41. package/dist/esm/types/inputs.js.map +1 -0
  42. package/dist/esm/types/method-types.d.ts +1 -0
  43. package/dist/esm/types/method-types.js +2 -0
  44. package/dist/esm/types/method-types.js.map +1 -0
  45. package/dist/esm/types/onboarding-events.d.ts +1 -0
  46. package/dist/esm/types/onboarding-events.js +2 -0
  47. package/dist/esm/types/onboarding-events.js.map +1 -0
  48. package/dist/esm/types/paywall-events.d.ts +1 -0
  49. package/dist/esm/types/paywall-events.js +2 -0
  50. package/dist/esm/types/paywall-events.js.map +1 -0
  51. package/dist/esm/ui-builder/base-view-emitter.d.ts +1 -1
  52. package/dist/esm/ui-builder/base-view-emitter.js +1 -1
  53. package/dist/esm/ui-builder/base-view-emitter.js.map +1 -1
  54. package/dist/esm/ui-builder/create-onboarding-view.d.ts +1 -1
  55. package/dist/esm/ui-builder/create-onboarding-view.js.map +1 -1
  56. package/dist/esm/ui-builder/create-paywall-view.d.ts +1 -1
  57. package/dist/esm/ui-builder/create-paywall-view.js.map +1 -1
  58. package/dist/esm/ui-builder/onboarding-view-controller.d.ts +1 -1
  59. package/dist/esm/ui-builder/onboarding-view-controller.js +7 -9
  60. package/dist/esm/ui-builder/onboarding-view-controller.js.map +1 -1
  61. package/dist/esm/ui-builder/onboarding-view-emitter.d.ts +2 -2
  62. package/dist/esm/ui-builder/onboarding-view-emitter.js +2 -2
  63. package/dist/esm/ui-builder/onboarding-view-emitter.js.map +1 -1
  64. package/dist/esm/ui-builder/paywall-view-controller.d.ts +1 -1
  65. package/dist/esm/ui-builder/paywall-view-controller.js +6 -8
  66. package/dist/esm/ui-builder/paywall-view-controller.js.map +1 -1
  67. package/dist/esm/ui-builder/paywall-view-emitter.d.ts +2 -2
  68. package/dist/esm/ui-builder/paywall-view-emitter.js +2 -2
  69. package/dist/esm/ui-builder/paywall-view-emitter.js.map +1 -1
  70. package/dist/esm/ui-builder/types.d.ts +3 -3
  71. package/dist/esm/ui-builder/types.js +1 -1
  72. package/dist/esm/ui-builder/types.js.map +1 -1
  73. package/dist/esm/utils/index.d.ts +1 -0
  74. package/dist/esm/utils/index.js +2 -0
  75. package/dist/esm/utils/index.js.map +1 -0
  76. package/dist/esm/version.d.ts +1 -1
  77. package/dist/esm/version.js +1 -1
  78. package/dist/esm/version.js.map +1 -1
  79. package/dist/plugin.cjs.js +2882 -2777
  80. package/dist/plugin.cjs.js.map +1 -1
  81. package/dist/plugin.js +5321 -5216
  82. package/dist/plugin.js.map +1 -1
  83. package/package.json +13 -7
  84. package/dist/esm/coder-registry.d.ts +0 -27
  85. package/dist/esm/coder-registry.js +0 -25
  86. package/dist/esm/coder-registry.js.map +0 -1
  87. package/dist/esm/shared/adapty-error.d.ts +0 -19
  88. package/dist/esm/shared/adapty-error.js +0 -46
  89. package/dist/esm/shared/adapty-error.js.map +0 -1
  90. package/dist/esm/shared/coders/adapty-access-level.d.ts +0 -10
  91. package/dist/esm/shared/coders/adapty-access-level.js +0 -113
  92. package/dist/esm/shared/coders/adapty-access-level.js.map +0 -1
  93. package/dist/esm/shared/coders/adapty-configuration.d.ts +0 -8
  94. package/dist/esm/shared/coders/adapty-configuration.js +0 -68
  95. package/dist/esm/shared/coders/adapty-configuration.js.map +0 -1
  96. package/dist/esm/shared/coders/adapty-discount-phase.d.ts +0 -10
  97. package/dist/esm/shared/coders/adapty-discount-phase.js +0 -39
  98. package/dist/esm/shared/coders/adapty-discount-phase.js.map +0 -1
  99. package/dist/esm/shared/coders/adapty-identify-params.d.ts +0 -11
  100. package/dist/esm/shared/coders/adapty-identify-params.js +0 -19
  101. package/dist/esm/shared/coders/adapty-identify-params.js.map +0 -1
  102. package/dist/esm/shared/coders/adapty-installation-details.d.ts +0 -7
  103. package/dist/esm/shared/coders/adapty-installation-details.js +0 -25
  104. package/dist/esm/shared/coders/adapty-installation-details.js.map +0 -1
  105. package/dist/esm/shared/coders/adapty-installation-status.d.ts +0 -7
  106. package/dist/esm/shared/coders/adapty-installation-status.js +0 -42
  107. package/dist/esm/shared/coders/adapty-installation-status.js.map +0 -1
  108. package/dist/esm/shared/coders/adapty-native-error.d.ts +0 -14
  109. package/dist/esm/shared/coders/adapty-native-error.js +0 -21
  110. package/dist/esm/shared/coders/adapty-native-error.js.map +0 -1
  111. package/dist/esm/shared/coders/adapty-non-subscription.d.ts +0 -10
  112. package/dist/esm/shared/coders/adapty-non-subscription.js +0 -31
  113. package/dist/esm/shared/coders/adapty-non-subscription.js.map +0 -1
  114. package/dist/esm/shared/coders/adapty-onboarding-builder.d.ts +0 -10
  115. package/dist/esm/shared/coders/adapty-onboarding-builder.js +0 -14
  116. package/dist/esm/shared/coders/adapty-onboarding-builder.js.map +0 -1
  117. package/dist/esm/shared/coders/adapty-onboarding.d.ts +0 -13
  118. package/dist/esm/shared/coders/adapty-onboarding.js +0 -55
  119. package/dist/esm/shared/coders/adapty-onboarding.js.map +0 -1
  120. package/dist/esm/shared/coders/adapty-paywall-builder.d.ts +0 -10
  121. package/dist/esm/shared/coders/adapty-paywall-builder.js +0 -19
  122. package/dist/esm/shared/coders/adapty-paywall-builder.js.map +0 -1
  123. package/dist/esm/shared/coders/adapty-paywall-product.d.ts +0 -11
  124. package/dist/esm/shared/coders/adapty-paywall-product.js +0 -94
  125. package/dist/esm/shared/coders/adapty-paywall-product.js.map +0 -1
  126. package/dist/esm/shared/coders/adapty-paywall.d.ts +0 -13
  127. package/dist/esm/shared/coders/adapty-paywall.js +0 -75
  128. package/dist/esm/shared/coders/adapty-paywall.js.map +0 -1
  129. package/dist/esm/shared/coders/adapty-placement.d.ts +0 -10
  130. package/dist/esm/shared/coders/adapty-placement.js +0 -23
  131. package/dist/esm/shared/coders/adapty-placement.js.map +0 -1
  132. package/dist/esm/shared/coders/adapty-price.d.ts +0 -10
  133. package/dist/esm/shared/coders/adapty-price.js +0 -29
  134. package/dist/esm/shared/coders/adapty-price.js.map +0 -1
  135. package/dist/esm/shared/coders/adapty-profile-parameters.d.ts +0 -10
  136. package/dist/esm/shared/coders/adapty-profile-parameters.js +0 -30
  137. package/dist/esm/shared/coders/adapty-profile-parameters.js.map +0 -1
  138. package/dist/esm/shared/coders/adapty-profile.d.ts +0 -10
  139. package/dist/esm/shared/coders/adapty-profile.js +0 -47
  140. package/dist/esm/shared/coders/adapty-profile.js.map +0 -1
  141. package/dist/esm/shared/coders/adapty-purchase-params.d.ts +0 -7
  142. package/dist/esm/shared/coders/adapty-purchase-params.js +0 -37
  143. package/dist/esm/shared/coders/adapty-purchase-params.js.map +0 -1
  144. package/dist/esm/shared/coders/adapty-purchase-result.d.ts +0 -12
  145. package/dist/esm/shared/coders/adapty-purchase-result.js +0 -54
  146. package/dist/esm/shared/coders/adapty-purchase-result.js.map +0 -1
  147. package/dist/esm/shared/coders/adapty-remote-config.d.ts +0 -13
  148. package/dist/esm/shared/coders/adapty-remote-config.js +0 -41
  149. package/dist/esm/shared/coders/adapty-remote-config.js.map +0 -1
  150. package/dist/esm/shared/coders/adapty-subscription-details.d.ts +0 -11
  151. package/dist/esm/shared/coders/adapty-subscription-details.js +0 -64
  152. package/dist/esm/shared/coders/adapty-subscription-details.js.map +0 -1
  153. package/dist/esm/shared/coders/adapty-subscription-offer-identifier.d.ts +0 -10
  154. package/dist/esm/shared/coders/adapty-subscription-offer-identifier.js +0 -19
  155. package/dist/esm/shared/coders/adapty-subscription-offer-identifier.js.map +0 -1
  156. package/dist/esm/shared/coders/adapty-subscription-offer.d.ts +0 -11
  157. package/dist/esm/shared/coders/adapty-subscription-offer.js +0 -50
  158. package/dist/esm/shared/coders/adapty-subscription-offer.js.map +0 -1
  159. package/dist/esm/shared/coders/adapty-subscription-period.d.ts +0 -10
  160. package/dist/esm/shared/coders/adapty-subscription-period.js +0 -11
  161. package/dist/esm/shared/coders/adapty-subscription-period.js.map +0 -1
  162. package/dist/esm/shared/coders/adapty-subscription.d.ts +0 -10
  163. package/dist/esm/shared/coders/adapty-subscription.js +0 -116
  164. package/dist/esm/shared/coders/adapty-subscription.js.map +0 -1
  165. package/dist/esm/shared/coders/adapty-ui-create-onboarding-view-params.d.ts +0 -8
  166. package/dist/esm/shared/coders/adapty-ui-create-onboarding-view-params.js +0 -10
  167. package/dist/esm/shared/coders/adapty-ui-create-onboarding-view-params.js.map +0 -1
  168. package/dist/esm/shared/coders/adapty-ui-create-paywall-view-params.d.ts +0 -18
  169. package/dist/esm/shared/coders/adapty-ui-create-paywall-view-params.js +0 -142
  170. package/dist/esm/shared/coders/adapty-ui-create-paywall-view-params.js.map +0 -1
  171. package/dist/esm/shared/coders/adapty-ui-media-cache.d.ts +0 -10
  172. package/dist/esm/shared/coders/adapty-ui-media-cache.js +0 -24
  173. package/dist/esm/shared/coders/adapty-ui-media-cache.js.map +0 -1
  174. package/dist/esm/shared/coders/adapty-ui-onboarding-meta.d.ts +0 -10
  175. package/dist/esm/shared/coders/adapty-ui-onboarding-meta.js +0 -29
  176. package/dist/esm/shared/coders/adapty-ui-onboarding-meta.js.map +0 -1
  177. package/dist/esm/shared/coders/adapty-ui-onboarding-state-params.d.ts +0 -10
  178. package/dist/esm/shared/coders/adapty-ui-onboarding-state-params.js +0 -24
  179. package/dist/esm/shared/coders/adapty-ui-onboarding-state-params.js.map +0 -1
  180. package/dist/esm/shared/coders/adapty-ui-onboarding-state-updated-action.d.ts +0 -14
  181. package/dist/esm/shared/coders/adapty-ui-onboarding-state-updated-action.js +0 -55
  182. package/dist/esm/shared/coders/adapty-ui-onboarding-state-updated-action.js.map +0 -1
  183. package/dist/esm/shared/coders/array.d.ts +0 -15
  184. package/dist/esm/shared/coders/array.js +0 -34
  185. package/dist/esm/shared/coders/array.js.map +0 -1
  186. package/dist/esm/shared/coders/bridge-error.d.ts +0 -13
  187. package/dist/esm/shared/coders/bridge-error.js +0 -78
  188. package/dist/esm/shared/coders/bridge-error.js.map +0 -1
  189. package/dist/esm/shared/coders/coder.d.ts +0 -13
  190. package/dist/esm/shared/coders/coder.js +0 -118
  191. package/dist/esm/shared/coders/coder.js.map +0 -1
  192. package/dist/esm/shared/coders/date.d.ts +0 -9
  193. package/dist/esm/shared/coders/date.js +0 -36
  194. package/dist/esm/shared/coders/date.js.map +0 -1
  195. package/dist/esm/shared/coders/error-coder.d.ts +0 -6
  196. package/dist/esm/shared/coders/error-coder.js +0 -2
  197. package/dist/esm/shared/coders/error-coder.js.map +0 -1
  198. package/dist/esm/shared/coders/hashmap.d.ts +0 -7
  199. package/dist/esm/shared/coders/hashmap.js +0 -25
  200. package/dist/esm/shared/coders/hashmap.js.map +0 -1
  201. package/dist/esm/shared/coders/json.d.ts +0 -8
  202. package/dist/esm/shared/coders/json.js +0 -15
  203. package/dist/esm/shared/coders/json.js.map +0 -1
  204. package/dist/esm/shared/coders/parse-onboarding.d.ts +0 -3
  205. package/dist/esm/shared/coders/parse-onboarding.js +0 -86
  206. package/dist/esm/shared/coders/parse-onboarding.js.map +0 -1
  207. package/dist/esm/shared/coders/parse-paywall.d.ts +0 -4
  208. package/dist/esm/shared/coders/parse-paywall.js +0 -141
  209. package/dist/esm/shared/coders/parse-paywall.js.map +0 -1
  210. package/dist/esm/shared/coders/parse.d.ts +0 -6
  211. package/dist/esm/shared/coders/parse.js +0 -135
  212. package/dist/esm/shared/coders/parse.js.map +0 -1
  213. package/dist/esm/shared/coders/product-reference.d.ts +0 -10
  214. package/dist/esm/shared/coders/product-reference.js +0 -53
  215. package/dist/esm/shared/coders/product-reference.js.map +0 -1
  216. package/dist/esm/shared/coders/types.d.ts +0 -23
  217. package/dist/esm/shared/coders/types.js +0 -2
  218. package/dist/esm/shared/coders/types.js.map +0 -1
  219. package/dist/esm/shared/coders/utils.d.ts +0 -18
  220. package/dist/esm/shared/coders/utils.js +0 -50
  221. package/dist/esm/shared/coders/utils.js.map +0 -1
  222. package/dist/esm/shared/constants.d.ts +0 -42
  223. package/dist/esm/shared/constants.js +0 -37
  224. package/dist/esm/shared/constants.js.map +0 -1
  225. package/dist/esm/shared/index.d.ts +0 -3
  226. package/dist/esm/shared/index.js +0 -4
  227. package/dist/esm/shared/index.js.map +0 -1
  228. package/dist/esm/shared/logger/console-sink.d.ts +0 -2
  229. package/dist/esm/shared/logger/console-sink.js +0 -23
  230. package/dist/esm/shared/logger/console-sink.js.map +0 -1
  231. package/dist/esm/shared/logger/index.d.ts +0 -5
  232. package/dist/esm/shared/logger/index.js +0 -5
  233. package/dist/esm/shared/logger/index.js.map +0 -1
  234. package/dist/esm/shared/logger/log-context.d.ts +0 -23
  235. package/dist/esm/shared/logger/log-context.js +0 -61
  236. package/dist/esm/shared/logger/log-context.js.map +0 -1
  237. package/dist/esm/shared/logger/log-scope.d.ts +0 -25
  238. package/dist/esm/shared/logger/log-scope.js +0 -26
  239. package/dist/esm/shared/logger/log-scope.js.map +0 -1
  240. package/dist/esm/shared/logger/log.d.ts +0 -34
  241. package/dist/esm/shared/logger/log.js +0 -110
  242. package/dist/esm/shared/logger/log.js.map +0 -1
  243. package/dist/esm/shared/logger/types.d.ts +0 -20
  244. package/dist/esm/shared/logger/types.js +0 -2
  245. package/dist/esm/shared/logger/types.js.map +0 -1
  246. package/dist/esm/shared/types/bridge.d.ts +0 -50
  247. package/dist/esm/shared/types/bridge.js +0 -78
  248. package/dist/esm/shared/types/bridge.js.map +0 -1
  249. package/dist/esm/shared/types/error.d.ts +0 -325
  250. package/dist/esm/shared/types/error.js +0 -176
  251. package/dist/esm/shared/types/error.js.map +0 -1
  252. package/dist/esm/shared/types/index.d.ts +0 -718
  253. package/dist/esm/shared/types/index.js +0 -14
  254. package/dist/esm/shared/types/index.js.map +0 -1
  255. package/dist/esm/shared/types/inputs.d.ts +0 -238
  256. package/dist/esm/shared/types/inputs.js +0 -42
  257. package/dist/esm/shared/types/inputs.js.map +0 -1
  258. package/dist/esm/shared/types/method-types.d.ts +0 -86
  259. package/dist/esm/shared/types/method-types.js +0 -13
  260. package/dist/esm/shared/types/method-types.js.map +0 -1
  261. package/dist/esm/shared/types/onboarding-events.d.ts +0 -60
  262. package/dist/esm/shared/types/onboarding-events.js +0 -11
  263. package/dist/esm/shared/types/onboarding-events.js.map +0 -1
  264. package/dist/esm/shared/types/paywall-events.d.ts +0 -84
  265. package/dist/esm/shared/types/paywall-events.js +0 -16
  266. package/dist/esm/shared/types/paywall-events.js.map +0 -1
  267. package/dist/esm/shared/utils/compact-object.d.ts +0 -6
  268. package/dist/esm/shared/utils/compact-object.js +0 -9
  269. package/dist/esm/shared/utils/compact-object.js.map +0 -1
  270. package/dist/esm/shared/utils/map-values.d.ts +0 -8
  271. package/dist/esm/shared/utils/map-values.js +0 -11
  272. package/dist/esm/shared/utils/map-values.js.map +0 -1
  273. package/dist/esm/shared/utils/merge-options.d.ts +0 -7
  274. package/dist/esm/shared/utils/merge-options.js +0 -93
  275. package/dist/esm/shared/utils/merge-options.js.map +0 -1
  276. package/dist/esm/shared/utils/platform.d.ts +0 -2
  277. package/dist/esm/shared/utils/platform.js +0 -5
  278. package/dist/esm/shared/utils/platform.js.map +0 -1
  279. package/dist/esm/shared/utils/with-error-context.d.ts +0 -7
  280. package/dist/esm/shared/utils/with-error-context.js +0 -33
  281. package/dist/esm/shared/utils/with-error-context.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sources":["esm/bridge/plugin.js","esm/shared/types/error.js","esm/shared/adapty-error.js","esm/shared/coders/coder.js","esm/shared/coders/adapty-native-error.js","esm/shared/coders/product-reference.js","esm/shared/coders/array.js","esm/shared/coders/json.js","esm/shared/coders/adapty-remote-config.js","esm/shared/coders/adapty-paywall-builder.js","esm/shared/coders/adapty-placement.js","esm/shared/coders/adapty-paywall.js","esm/shared/coders/adapty-price.js","esm/shared/coders/adapty-subscription-period.js","esm/shared/coders/adapty-subscription-offer-identifier.js","esm/shared/coders/adapty-discount-phase.js","esm/shared/coders/adapty-subscription-offer.js","esm/shared/coders/adapty-subscription-details.js","esm/shared/coders/adapty-paywall-product.js","esm/shared/coders/date.js","esm/shared/coders/adapty-access-level.js","esm/shared/coders/adapty-non-subscription.js","esm/shared/coders/adapty-subscription.js","esm/shared/coders/hashmap.js","esm/shared/coders/adapty-profile.js","esm/shared/coders/bridge-error.js","esm/shared/utils/platform.js","esm/shared/coders/adapty-purchase-result.js","esm/shared/coders/adapty-onboarding-builder.js","esm/shared/coders/adapty-onboarding.js","esm/shared/coders/adapty-ui-onboarding-meta.js","esm/shared/coders/adapty-ui-onboarding-state-params.js","esm/shared/coders/adapty-ui-onboarding-state-updated-action.js","esm/shared/coders/adapty-installation-status.js","esm/shared/coders/adapty-installation-details.js","esm/shared/coders/parse.js","esm/shared/types/inputs.js","esm/shared/logger/console-sink.js","esm/version.js","esm/shared/logger/log.js","esm/shared/logger/log-scope.js","esm/shared/logger/log-context.js","esm/adapty-emitter.js","esm/coder-registry.js","esm/default-configs.js","esm/shared/coders/adapty-ui-media-cache.js","esm/shared/coders/adapty-configuration.js","esm/shared/coders/adapty-identify-params.js","esm/shared/coders/adapty-profile-parameters.js","esm/shared/coders/adapty-purchase-params.js","esm/shared/types/method-types.js","esm/shared/utils/compact-object.js","esm/shared/utils/merge-options.js","esm/shared/utils/with-error-context.js","esm/adapty.js","esm/shared/constants.js","esm/shared/types/paywall-events.js","esm/shared/types/index.js","esm/shared/coders/utils.js","esm/shared/coders/adapty-ui-create-paywall-view-params.js","esm/shared/utils/map-values.js","esm/shared/coders/parse-paywall.js","esm/ui-builder/base-view-emitter.js","esm/ui-builder/paywall-view-emitter.js","esm/ui-builder/types.js","esm/ui-builder/paywall-view-controller.js","esm/shared/coders/adapty-ui-create-onboarding-view-params.js","esm/shared/types/onboarding-events.js","esm/shared/coders/parse-onboarding.js","esm/ui-builder/onboarding-view-emitter.js","esm/ui-builder/onboarding-view-controller.js","esm/ui-builder/create-paywall-view.js","esm/ui-builder/create-onboarding-view.js","esm/index.js","esm/bridge/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nexport const AdaptyCapacitorPlugin = registerPlugin('AdaptyCapacitorPlugin', {\n web: () => import('./web').then((m) => new m.AdaptyCapacitorPluginWeb()),\n});\n//# sourceMappingURL=plugin.js.map","// import SDK type to link to methods in docs.\n// import { AdaptyError } from '../sdk2/error';\nconst ErrorCodeMapping = {\n /**\n * System StoreKit codes\n */\n 0: 'unknown',\n /**\n * Client is not allowed to make a request, etc.\n */\n 1: 'clientInvalid',\n /**\n * Invalid purchase identifier, etc.\n */\n 3: 'paymentInvalid',\n /**\n * This device is not allowed to make the payment.\n */\n 4: 'paymentNotAllowed',\n /**\n * Product is not available in the current storefront.\n */\n 5: 'storeProductNotAvailable',\n /**\n * User has not allowed access to cloud service information.\n */\n 6: 'cloudServicePermissionDenied',\n /**\n * The device could not connect to the network.\n */\n 7: 'cloudServiceNetworkConnectionFailed',\n /**\n * User has revoked permission to use this cloud service.\n */\n 8: 'cloudServiceRevoked',\n /**\n * The user needs to acknowledge Apple's privacy policy.\n */\n 9: 'privacyAcknowledgementRequired',\n /**\n * The app is attempting to use SKPayment's requestData property,\n * but does not have the appropriate entitlement.\n */\n 10: 'unauthorizedRequestData',\n /**\n * The specified subscription offer identifier is not valid.\n */\n 11: 'invalidOfferIdentifier',\n /**\n * The cryptographic signature provided is not valid.\n */\n 12: 'invalidSignature',\n /**\n * One or more parameters from SKPaymentDiscount is missing.\n */\n 13: 'missingOfferParams',\n 14: 'invalidOfferPrice',\n /**\n * Custom Android codes.\n */\n 20: 'adaptyNotInitialized',\n 22: 'productNotFound',\n 24: 'currentSubscriptionToUpdateNotFoundInHistory',\n 97: 'billingServiceTimeout',\n 98: 'featureNotSupported',\n 99: 'billingServiceDisconnected',\n 102: 'billingServiceUnavailable',\n 103: 'billingUnavailable',\n 105: 'developerError',\n 106: 'billingError',\n 107: 'itemAlreadyOwned',\n 108: 'itemNotOwned',\n 112: 'billingNetworkError',\n 1000: 'noProductIDsFound',\n 1002: 'productRequestFailed',\n /**\n * In-App Purchases are not allowed on this device.\n */\n 1003: 'cantMakePayments',\n 1004: 'noPurchasesToRestore',\n 1005: 'cantReadReceipt',\n 1006: 'productPurchaseFailed',\n 1010: 'refreshReceiptFailed',\n 1011: 'receiveRestoredTransactionsFailed',\n /**\n * You need to be authenticated to perform requests.\n */\n 2002: 'notActivated',\n 2003: 'badRequest',\n 2004: 'serverError',\n 2005: 'networkFailed',\n 2006: 'decodingFailed',\n 2009: 'encodingFailed',\n 3000: 'analyticsDisabled',\n /**\n * Wrong parameter was passed.\n */\n 3001: 'wrongParam',\n /**\n * It is not possible to call `.activate` method more than once.\n */\n 3005: 'activateOnceError',\n /**\n * The user profile was changed during the operation.\n */\n 3006: 'profileWasChanged',\n 3007: 'unsupportedData',\n 3100: 'persistingDataError',\n 3101: 'fetchTimeoutError',\n 9000: 'operationInterrupted',\n};\nexport const ErrorCode = Object.freeze(ErrorCodeMapping);\nconst ErrorCodeNameMapping = Object.freeze({\n unknown: 0,\n clientInvalid: 1,\n paymentInvalid: 3,\n paymentNotAllowed: 4,\n storeProductNotAvailable: 5,\n cloudServicePermissionDenied: 6,\n cloudServiceNetworkConnectionFailed: 7,\n cloudServiceRevoked: 8,\n privacyAcknowledgementRequired: 9,\n unauthorizedRequestData: 10,\n invalidOfferIdentifier: 11,\n invalidSignature: 12,\n missingOfferParams: 13,\n invalidOfferPrice: 14,\n adaptyNotInitialized: 20,\n productNotFound: 22,\n currentSubscriptionToUpdateNotFoundInHistory: 24,\n billingServiceTimeout: 97,\n featureNotSupported: 98,\n billingServiceDisconnected: 99,\n billingServiceUnavailable: 102,\n billingUnavailable: 103,\n developerError: 105,\n billingError: 106,\n itemAlreadyOwned: 107,\n itemNotOwned: 108,\n billingNetworkError: 112,\n noProductIDsFound: 1000,\n productRequestFailed: 1002,\n cantMakePayments: 1003,\n noPurchasesToRestore: 1004,\n cantReadReceipt: 1005,\n productPurchaseFailed: 1006,\n refreshReceiptFailed: 1010,\n receiveRestoredTransactionsFailed: 1011,\n notActivated: 2002,\n badRequest: 2003,\n serverError: 2004,\n networkFailed: 2005,\n decodingFailed: 2006,\n encodingFailed: 2009,\n analyticsDisabled: 3000,\n wrongParam: 3001,\n activateOnceError: 3005,\n profileWasChanged: 3006,\n unsupportedData: 3007,\n persistingDataError: 3100,\n fetchTimeoutError: 3101,\n operationInterrupted: 9000,\n});\nexport const ErrorCodeName = ErrorCodeNameMapping;\nexport function getErrorCode(name) {\n var _a;\n return (_a = ErrorCodeName[name]) !== null && _a !== void 0 ? _a : undefined;\n}\nexport function getErrorPrompt(code) {\n const prompt = ErrorCode[code];\n if (!prompt) {\n return `Unknown code: ${code}`;\n }\n return prompt;\n}\n//# sourceMappingURL=error.js.map","import { ErrorCode } from './types/error';\nexport class AdaptyError extends Error {\n constructor(input) {\n super(AdaptyError.getMessage(input));\n this.adaptyCode = input.adaptyCode;\n this.localizedDescription = input.message;\n this.detail = input.detail;\n if (AdaptyError.middleware) {\n AdaptyError.middleware(this);\n }\n }\n static set onError(callback) {\n AdaptyError.middleware = callback;\n }\n static failedToDecodeNativeError(message, error) {\n return new AdaptyError({\n adaptyCode: 0,\n message: message,\n detail: JSON.stringify(error),\n });\n }\n static failedToEncode(message) {\n return new AdaptyError({\n adaptyCode: 2009,\n message: message,\n });\n }\n static failedToDecode(message) {\n return new AdaptyError({\n adaptyCode: 2006,\n message: message,\n });\n }\n static getMessage(input) {\n const code = input.adaptyCode;\n const codeText = ErrorCode[code];\n let message = `#${code} (${codeText}): ${input.message}`;\n if (AdaptyError.prefix) {\n message = `${AdaptyError.prefix} ${message}`;\n }\n return message;\n }\n}\n// Custom prefix to be shown before log message\nAdaptyError.prefix = '';\n//# sourceMappingURL=adapty-error.js.map","import { AdaptyError } from '../adapty-error';\n// import { Platform } from 'react-native'; // Not available in Capacitor\n// Mock Platform for Capacitor\nconst Platform = {\n OS: 'web'\n};\nexport class Coder {\n encode(data) {\n return this.encodeWithProperties(data, this.properties);\n }\n // From vendor_product_id to productId\n decode(data) {\n return this.decodeWithProperties(data, this.properties);\n }\n isType(value, type) {\n switch (type) {\n case 'string':\n case 'boolean':\n case 'number':\n return typeof value === type;\n case 'object':\n return value !== null && typeof value === 'object';\n case 'array':\n return Array.isArray(value);\n }\n }\n getNestedValue(obj, key) {\n const keys = key.split('.');\n let current;\n if (typeof obj === 'string') {\n try {\n current = JSON.parse(obj);\n }\n catch (error) {\n return undefined;\n }\n }\n else {\n current = obj;\n }\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n if (current[key] !== undefined) {\n current = current[key];\n }\n else {\n return undefined;\n }\n }\n return current;\n }\n assignNestedValue(obj, key, value) {\n const keys = String(key).split('.');\n let currentObj = obj;\n for (let i = 0; i < keys.length - 1; i++) {\n const key = keys[i];\n if (currentObj[key] === undefined) {\n currentObj[key] = {};\n }\n currentObj = currentObj[key];\n }\n currentObj[keys[keys.length - 1]] = value;\n return obj;\n }\n encodeWithProperties(data, properties) {\n const result = {};\n for (const key in data) {\n if (key === 'ios' || key === 'android') {\n // Read properties from ios/android platform keys and flatten them\n const platformResult = this.encodeWithProperties(data[key], properties[key]);\n Object.assign(result, platformResult);\n continue;\n }\n const property = properties[key];\n if (!property) {\n throw AdaptyError.failedToEncode(`Failed to find encoder for property \"${key}\"`);\n }\n const converter = property.converter;\n this.assignNestedValue(result, property.key, converter ? converter.encode(data[key]) : data[key]);\n }\n return result;\n }\n decodeWithProperties(data, properties, platform) {\n const result = {};\n for (const key in properties) {\n if (key === 'android' || key === 'ios') {\n // Add ios/android property and fill platform data there\n result[key] =\n this.decodeWithProperties(data, properties[key], key);\n continue;\n }\n const property = properties[key];\n if (!property) {\n throw AdaptyError.failedToDecode(`Failed to find decoder for property \"${key}\"`);\n }\n const value = this.getNestedValue(data, property.key);\n if (property.required &&\n value === undefined &&\n (!platform || platform == Platform.OS)) {\n throw AdaptyError.failedToDecode(`Failed to decode native response, because it is missing required property \"${key}\"`);\n }\n // If value is null or undefined and property is not required, continue\n if (value == null)\n continue;\n if (!this.isType(value, property.type)) {\n throw AdaptyError.failedToDecode(`Failed to decode native response, because its property \"${key}\" has invalid type. Expected type: ${property.type}. Received type: ${typeof value}`);\n }\n // If a converter is provided, use it to convert the value\n result[key] = property.converter\n ? property.converter.decode(value)\n : value;\n }\n return result;\n }\n}\nexport class SimpleCoder extends Coder {\n}\n//# sourceMappingURL=coder.js.map","import { SimpleCoder } from './coder';\nimport { AdaptyError } from '../adapty-error';\nexport class AdaptyNativeErrorCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.type = 'error';\n this.properties = {\n adaptyCode: { key: 'adapty_code', required: true, type: 'number' },\n message: { key: 'message', required: true, type: 'string' },\n detail: { key: 'detail', required: false, type: 'string' },\n };\n }\n getError(data) {\n return new AdaptyError({\n adaptyCode: data.adaptyCode,\n message: data.message,\n detail: data.detail,\n });\n }\n}\n//# sourceMappingURL=adapty-native-error.js.map","import { SimpleCoder } from './coder';\nexport class ProductReferenceCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n vendorId: {\n key: 'vendor_product_id',\n required: true,\n type: 'string',\n },\n adaptyId: {\n key: 'adapty_product_id',\n required: true,\n type: 'string',\n },\n accessLevelId: {\n key: 'access_level_id',\n required: true,\n type: 'string',\n },\n productType: {\n key: 'product_type',\n required: true,\n type: 'string',\n },\n ios: {\n promotionalOfferId: {\n key: 'promotional_offer_id',\n required: false,\n type: 'string',\n },\n winBackOfferId: {\n key: 'win_back_offer_id',\n required: false,\n type: 'string',\n },\n },\n android: {\n basePlanId: {\n key: 'base_plan_id',\n required: false,\n type: 'string',\n },\n offerId: {\n key: 'offer_id',\n required: false,\n type: 'string',\n },\n },\n };\n }\n}\n//# sourceMappingURL=product-reference.js.map","// Coder for Array<T>\nexport class ArrayCoder {\n constructor(coder) {\n this.coder = new coder();\n }\n decode(input) {\n const result = [];\n input.forEach(value => {\n result.push(this.coder.decode(value));\n });\n return result;\n }\n encode(value) {\n const result = [];\n value.forEach(model => {\n result.push(this.coder.encode(model));\n });\n return result;\n }\n}\nexport function createArrayCoder(CoderClass) {\n return class ArrayCoderWrapper {\n constructor() {\n this.arrayCoderInstance = new ArrayCoder(CoderClass);\n }\n decode(data) {\n return this.arrayCoderInstance.decode(data);\n }\n encode(data) {\n return this.arrayCoderInstance.encode(data);\n }\n };\n}\n//# sourceMappingURL=array.js.map","export class JSONCoder {\n decode(input) {\n if (!input) {\n return {};\n }\n return JSON.parse(input);\n }\n encode(value) {\n if (Object.keys(value).length === 0) {\n return '';\n }\n return JSON.stringify(value);\n }\n}\n//# sourceMappingURL=json.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { Coder } from './coder';\nimport { JSONCoder } from './json';\nexport class AdaptyRemoteConfigCoder extends Coder {\n constructor() {\n super(...arguments);\n this.properties = {\n data: {\n key: 'data',\n required: true,\n type: 'string',\n converter: new JSONCoder(),\n },\n lang: {\n key: 'lang',\n required: true,\n type: 'string',\n },\n };\n }\n decode(data) {\n const codablePart = super.decode(data);\n const dataString = JSON.stringify(codablePart.data);\n return Object.assign(Object.assign({}, codablePart), { dataString: dataString.length < 4 ? '' : dataString });\n }\n encode(data) {\n const { dataString } = data, codablePart = __rest(data, [\"dataString\"]);\n return super.encode(codablePart);\n }\n}\n//# sourceMappingURL=adapty-remote-config.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyPaywallBuilderCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n id: {\n key: 'paywall_builder_id',\n required: true,\n type: 'string',\n },\n lang: {\n key: 'lang',\n required: true,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-paywall-builder.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyPlacementCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n abTestName: { key: 'ab_test_name', required: true, type: 'string' },\n audienceName: { key: 'audience_name', required: true, type: 'string' },\n id: { key: 'developer_id', required: true, type: 'string' },\n revision: { key: 'revision', required: true, type: 'number' },\n audienceVersionId: {\n key: 'placement_audience_version_id',\n required: true,\n type: 'string',\n },\n isTrackingPurchases: {\n key: 'is_tracking_purchases',\n required: false,\n type: 'boolean',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-placement.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { ProductReferenceCoder } from './product-reference';\nimport { ArrayCoder } from './array';\nimport { Coder } from './coder';\nimport { AdaptyRemoteConfigCoder } from './adapty-remote-config';\nimport { AdaptyPaywallBuilderCoder } from './adapty-paywall-builder';\nimport { AdaptyPlacementCoder } from './adapty-placement';\nexport class AdaptyPaywallCoder extends Coder {\n constructor() {\n super(...arguments);\n this.properties = {\n placement: {\n key: 'placement',\n required: true,\n type: 'object',\n converter: new AdaptyPlacementCoder(),\n },\n id: { key: 'paywall_id', required: true, type: 'string' },\n name: { key: 'paywall_name', required: true, type: 'string' },\n products: {\n key: 'products',\n required: true,\n type: 'array',\n converter: new ArrayCoder(ProductReferenceCoder),\n },\n remoteConfig: {\n key: 'remote_config',\n required: false,\n type: 'object',\n converter: new AdaptyRemoteConfigCoder(),\n },\n variationId: { key: 'variation_id', required: true, type: 'string' },\n version: { key: 'response_created_at', required: false, type: 'number' },\n paywallBuilder: {\n key: 'paywall_builder',\n required: false,\n type: 'object',\n converter: new AdaptyPaywallBuilderCoder(),\n },\n webPurchaseUrl: {\n key: 'web_purchase_url',\n required: false,\n type: 'string',\n },\n payloadData: { key: 'payload_data', required: false, type: 'string' },\n requestLocale: { key: 'request_locale', required: true, type: 'string' },\n };\n }\n decode(data) {\n const codablePart = super.decode(data);\n return Object.assign(Object.assign({}, codablePart), { hasViewConfiguration: codablePart.paywallBuilder !== undefined, productIdentifiers: codablePart.products.map(product => {\n var _a;\n return ({\n vendorProductId: product.vendorId,\n adaptyProductId: product.adaptyId,\n basePlanId: (_a = product.android) === null || _a === void 0 ? void 0 : _a.basePlanId,\n });\n }) });\n }\n encode(data) {\n const { hasViewConfiguration, productIdentifiers } = data, codablePart = __rest(data, [\"hasViewConfiguration\", \"productIdentifiers\"]);\n return super.encode(codablePart);\n }\n}\n//# sourceMappingURL=adapty-paywall.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyPriceCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n amount: {\n key: 'amount',\n required: true,\n type: 'number',\n },\n currencyCode: {\n key: 'currency_code',\n required: false,\n type: 'string',\n },\n currencySymbol: {\n key: 'currency_symbol',\n required: false,\n type: 'string',\n },\n localizedString: {\n key: 'localized_string',\n required: false,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-price.js.map","import { SimpleCoder } from './coder';\nexport class AdaptySubscriptionPeriodCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n unit: { key: 'unit', required: true, type: 'string' },\n numberOfUnits: { key: 'number_of_units', required: true, type: 'number' },\n };\n }\n}\n//# sourceMappingURL=adapty-subscription-period.js.map","import { SimpleCoder } from './coder';\nexport class AdaptySubscriptionOfferIdCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n type: {\n key: 'type',\n required: true,\n type: 'string',\n },\n id: {\n key: 'id',\n required: false,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-subscription-offer-identifier.js.map","import { SimpleCoder } from './coder';\nimport { AdaptySubscriptionPeriodCoder } from './adapty-subscription-period';\nimport { AdaptyPriceCoder } from './adapty-price';\nexport class AdaptyDiscountPhaseCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n localizedNumberOfPeriods: {\n key: 'localized_number_of_periods',\n required: false,\n type: 'string',\n },\n localizedSubscriptionPeriod: {\n key: 'localized_subscription_period',\n required: false,\n type: 'string',\n },\n numberOfPeriods: {\n key: 'number_of_periods',\n required: true,\n type: 'number',\n },\n paymentMode: { key: 'payment_mode', required: true, type: 'string' },\n price: {\n key: 'price',\n required: true,\n type: 'object',\n converter: new AdaptyPriceCoder(),\n },\n subscriptionPeriod: {\n key: 'subscription_period',\n required: true,\n type: 'object',\n converter: new AdaptySubscriptionPeriodCoder(),\n },\n };\n }\n}\n//# sourceMappingURL=adapty-discount-phase.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { SimpleCoder } from './coder';\nimport { AdaptySubscriptionOfferIdCoder } from './adapty-subscription-offer-identifier';\nimport { ArrayCoder } from './array';\nimport { AdaptyDiscountPhaseCoder } from './adapty-discount-phase';\nexport class AdaptySubscriptionOfferCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n identifier: {\n key: 'offer_identifier',\n required: true,\n type: 'object',\n converter: new AdaptySubscriptionOfferIdCoder(),\n },\n phases: {\n key: 'phases',\n required: true,\n type: 'array',\n converter: new ArrayCoder(AdaptyDiscountPhaseCoder),\n },\n android: {\n offerTags: {\n key: 'offer_tags',\n required: false,\n type: 'array',\n },\n },\n };\n }\n decode(data) {\n const baseResult = super.decode(data);\n if (!data.offer_tags) {\n const { android } = baseResult, partialData = __rest(baseResult, [\"android\"]);\n return partialData;\n }\n return baseResult;\n }\n}\n//# sourceMappingURL=adapty-subscription-offer.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { SimpleCoder } from './coder';\nimport { AdaptySubscriptionPeriodCoder } from './adapty-subscription-period';\nimport { AdaptySubscriptionOfferCoder } from './adapty-subscription-offer';\nexport class AdaptySubscriptionDetailsCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n subscriptionPeriod: {\n key: 'period',\n required: true,\n type: 'object',\n converter: new AdaptySubscriptionPeriodCoder(),\n },\n localizedSubscriptionPeriod: {\n key: 'localized_period',\n required: false,\n type: 'string',\n },\n offer: {\n key: 'offer',\n required: false,\n type: 'object',\n converter: new AdaptySubscriptionOfferCoder(),\n },\n ios: {\n subscriptionGroupIdentifier: {\n key: 'group_identifier',\n required: false,\n type: 'string',\n },\n },\n android: {\n basePlanId: {\n key: 'base_plan_id',\n required: true,\n type: 'string',\n },\n renewalType: {\n key: 'renewal_type',\n required: false,\n type: 'string',\n },\n },\n };\n }\n decode(data) {\n const baseResult = super.decode(data);\n const propToRemove = data.base_plan_id ? 'ios' : 'android';\n const _a = baseResult, _b = propToRemove, _ = _a[_b], partialData = __rest(_a, [typeof _b === \"symbol\" ? _b : _b + \"\"]);\n return partialData;\n }\n}\n//# sourceMappingURL=adapty-subscription-details.js.map","import { SimpleCoder } from './coder';\nimport { AdaptyPriceCoder } from './adapty-price';\nimport { AdaptySubscriptionDetailsCoder } from './adapty-subscription-details';\nexport class AdaptyPaywallProductCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n vendorProductId: {\n key: 'vendor_product_id',\n required: true,\n type: 'string',\n },\n adaptyId: {\n key: 'adapty_product_id',\n required: true,\n type: 'string',\n },\n accessLevelId: {\n key: 'access_level_id',\n required: true,\n type: 'string',\n },\n productType: {\n key: 'product_type',\n required: true,\n type: 'string',\n },\n paywallProductIndex: {\n key: 'paywall_product_index',\n required: true,\n type: 'number',\n },\n localizedDescription: {\n key: 'localized_description',\n required: true,\n type: 'string',\n },\n localizedTitle: { key: 'localized_title', required: true, type: 'string' },\n regionCode: { key: 'region_code', required: false, type: 'string' },\n variationId: {\n key: 'paywall_variation_id',\n required: true,\n type: 'string',\n },\n paywallABTestName: {\n key: 'paywall_ab_test_name',\n required: true,\n type: 'string',\n },\n paywallName: { key: 'paywall_name', required: true, type: 'string' },\n price: {\n key: 'price',\n required: false, // Native SDKs require this\n type: 'object',\n converter: new AdaptyPriceCoder(),\n },\n webPurchaseUrl: {\n key: 'web_purchase_url',\n required: false,\n type: 'string',\n },\n payloadData: { key: 'payload_data', required: false, type: 'string' },\n subscription: {\n key: 'subscription',\n required: false,\n type: 'object',\n converter: new AdaptySubscriptionDetailsCoder(),\n },\n ios: {\n isFamilyShareable: {\n key: 'is_family_shareable',\n required: true,\n type: 'boolean',\n },\n },\n };\n }\n getInput(data) {\n var _a, _b;\n return {\n adapty_product_id: data.adapty_product_id,\n access_level_id: data.access_level_id,\n product_type: data.product_type,\n paywall_product_index: data.paywall_product_index,\n paywall_ab_test_name: data.paywall_ab_test_name,\n payload_data: data.payload_data,\n paywall_name: data.paywall_name,\n paywall_variation_id: data.paywall_variation_id,\n subscription_offer_identifier: (_b = (_a = data.subscription) === null || _a === void 0 ? void 0 : _a.offer) === null || _b === void 0 ? void 0 : _b.offer_identifier,\n vendor_product_id: data.vendor_product_id,\n };\n }\n}\n//# sourceMappingURL=adapty-paywall-product.js.map","import { AdaptyError } from '../adapty-error';\n/**\n * Format: yyyy-MM-dd'T'HH:mm:ss.SSSZ\n * OpenAPI: Output.Date\n */\nexport class DateCoder {\n decode(input) {\n var _a, _b, _c, _d, _e, _f;\n let pureValue = input;\n if (!input.endsWith('Z')) {\n // React Native seems to have an inconsistent behaviour\n // with dates with timezone offset\n // It is not handled with custom libs like dayjs\n // So we just remove the timezone offset if possible\n // Android SDK returns the following format,\n // that resulted in an invalid date for some customers\n // `2023-02-24T07:16:28.000000+0000`\n // solution is:\n // 1. Replace \"+0000\" with \"Z\"\n // 2. Replace microsecs with 0 millisecs\n // with the timezone offset removed\n const dateParts = input.split(/[-T:.Z]/);\n const date = new Date(Date.UTC(parseInt((_a = dateParts[0]) !== null && _a !== void 0 ? _a : '0', 10), parseInt((_b = dateParts[1]) !== null && _b !== void 0 ? _b : '0', 10) - 1, parseInt((_c = dateParts[2]) !== null && _c !== void 0 ? _c : '0', 10), parseInt((_d = dateParts[3]) !== null && _d !== void 0 ? _d : '0', 10), parseInt((_e = dateParts[4]) !== null && _e !== void 0 ? _e : '0', 10), parseInt((_f = dateParts[5]) !== null && _f !== void 0 ? _f : '0', 10)));\n pureValue = date.toISOString();\n }\n const parsedValue = Date.parse(pureValue);\n if (isNaN(parsedValue)) {\n throw AdaptyError.failedToDecode(`Failed to decode a date string into JS Date. String value: ${pureValue}`);\n }\n return new Date(parsedValue);\n }\n encode(value) {\n return value.toISOString();\n }\n}\n//# sourceMappingURL=date.js.map","import { SimpleCoder } from './coder';\nimport { DateCoder } from './date';\nexport class AdaptyAccessLevelCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n activatedAt: {\n key: 'activated_at',\n required: true,\n type: 'string',\n converter: new DateCoder(),\n },\n activeIntroductoryOfferType: {\n key: 'active_introductory_offer_type',\n required: false,\n type: 'string',\n },\n activePromotionalOfferId: {\n key: 'active_promotional_offer_id',\n required: false,\n type: 'string',\n },\n activePromotionalOfferType: {\n key: 'active_promotional_offer_type',\n required: false,\n type: 'string',\n },\n billingIssueDetectedAt: {\n key: 'billing_issue_detected_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n cancellationReason: {\n key: 'cancellation_reason',\n required: false,\n type: 'string',\n },\n expiresAt: {\n key: 'expires_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n id: {\n key: 'id',\n required: true,\n type: 'string',\n },\n isActive: {\n key: 'is_active',\n required: true,\n type: 'boolean',\n },\n isInGracePeriod: {\n key: 'is_in_grace_period',\n required: true,\n type: 'boolean',\n },\n isLifetime: {\n key: 'is_lifetime',\n required: true,\n type: 'boolean',\n },\n isRefund: {\n key: 'is_refund',\n required: true,\n type: 'boolean',\n },\n renewedAt: {\n key: 'renewed_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n startsAt: {\n key: 'starts_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n store: {\n key: 'store',\n required: true,\n type: 'string',\n },\n unsubscribedAt: {\n key: 'unsubscribed_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n vendorProductId: {\n key: 'vendor_product_id',\n required: true,\n type: 'string',\n },\n willRenew: {\n key: 'will_renew',\n required: true,\n type: 'boolean',\n },\n android: {\n offerId: {\n key: 'offer_id',\n required: false,\n type: 'string',\n },\n },\n };\n }\n}\n//# sourceMappingURL=adapty-access-level.js.map","import { SimpleCoder } from './coder';\nimport { DateCoder } from './date';\nexport class AdaptyNonSubscriptionCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n isConsumable: { key: 'is_consumable', required: true, type: 'boolean' },\n isRefund: { key: 'is_refund', required: true, type: 'boolean' },\n isSandbox: { key: 'is_sandbox', required: true, type: 'boolean' },\n purchasedAt: {\n key: 'purchased_at',\n required: true,\n type: 'string',\n converter: new DateCoder(),\n },\n purchaseId: { key: 'purchase_id', required: true, type: 'string' },\n store: { key: 'store', required: true, type: 'string' },\n vendorProductId: {\n key: 'vendor_product_id',\n required: true,\n type: 'string',\n },\n vendorTransactionId: {\n key: 'vendor_transaction_id',\n required: false,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-non-subscription.js.map","import { SimpleCoder } from './coder';\nimport { DateCoder } from './date';\nexport class AdaptySubscriptionCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n isActive: {\n key: 'is_active',\n required: true,\n type: 'boolean',\n },\n isLifetime: {\n key: 'is_lifetime',\n required: true,\n type: 'boolean',\n },\n vendorProductId: {\n key: 'vendor_product_id',\n required: true,\n type: 'string',\n },\n store: {\n key: 'store',\n required: true,\n type: 'string',\n },\n vendorTransactionId: {\n key: 'vendor_transaction_id',\n required: true,\n type: 'string',\n },\n vendorOriginalTransactionId: {\n key: 'vendor_original_transaction_id',\n required: true,\n type: 'string',\n },\n activatedAt: {\n key: 'activated_at',\n required: true,\n type: 'string',\n converter: new DateCoder(),\n },\n willRenew: {\n key: 'will_renew',\n required: true,\n type: 'boolean',\n },\n isInGracePeriod: {\n key: 'is_in_grace_period',\n required: true,\n type: 'boolean',\n },\n isRefund: {\n key: 'is_refund',\n required: true,\n type: 'boolean',\n },\n isSandbox: {\n key: 'is_sandbox',\n required: true,\n type: 'boolean',\n },\n renewedAt: {\n key: 'renewed_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n expiresAt: {\n key: 'expires_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n startsAt: {\n key: 'starts_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n unsubscribedAt: {\n key: 'unsubscribed_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n billingIssueDetectedAt: {\n key: 'billing_issue_detected_at',\n required: false,\n type: 'string',\n converter: new DateCoder(),\n },\n activeIntroductoryOfferType: {\n key: 'active_introductory_offer_type',\n required: false,\n type: 'string',\n },\n activePromotionalOfferType: {\n key: 'active_promotional_offer_type',\n required: false,\n type: 'string',\n },\n activePromotionalOfferId: {\n key: 'active_promotional_offer_id',\n required: false,\n type: 'string',\n },\n cancellationReason: {\n key: 'cancellation_reason',\n required: false,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-subscription.js.map","// Coder for Record<string, T>\nexport class HashmapCoder {\n constructor(coder) {\n this.coder = coder;\n }\n decode(input) {\n const result = {};\n Object.keys(input).forEach(key => {\n var _a, _b;\n const property = input[key];\n result[key] = (_b = (_a = this.coder) === null || _a === void 0 ? void 0 : _a.decode(property)) !== null && _b !== void 0 ? _b : property;\n });\n return result;\n }\n encode(value) {\n const result = {};\n Object.keys(value).forEach(key => {\n var _a, _b;\n const property = value[key];\n result[key] = (_b = (_a = this.coder) === null || _a === void 0 ? void 0 : _a.encode(property)) !== null && _b !== void 0 ? _b : property;\n });\n return result;\n }\n}\n//# sourceMappingURL=hashmap.js.map","import { SimpleCoder } from './coder';\nimport { AdaptyAccessLevelCoder } from './adapty-access-level';\nimport { AdaptyNonSubscriptionCoder } from './adapty-non-subscription';\nimport { AdaptySubscriptionCoder } from './adapty-subscription';\nimport { HashmapCoder } from './hashmap';\nimport { ArrayCoder } from './array';\nexport class AdaptyProfileCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n accessLevels: {\n key: 'paid_access_levels',\n required: false,\n type: 'object',\n converter: new HashmapCoder(new AdaptyAccessLevelCoder()),\n },\n customAttributes: {\n key: 'custom_attributes',\n required: false,\n type: 'object',\n },\n customerUserId: {\n key: 'customer_user_id',\n required: false,\n type: 'string',\n },\n nonSubscriptions: {\n key: 'non_subscriptions',\n required: false,\n type: 'object',\n converter: new HashmapCoder(new ArrayCoder(AdaptyNonSubscriptionCoder)),\n },\n profileId: {\n key: 'profile_id',\n required: true,\n type: 'string',\n },\n subscriptions: {\n key: 'subscriptions',\n required: false,\n type: 'object',\n converter: new HashmapCoder(new AdaptySubscriptionCoder()),\n },\n };\n }\n}\n//# sourceMappingURL=adapty-profile.js.map","import { SimpleCoder } from './coder';\nimport { AdaptyError } from '../adapty-error';\nexport class BridgeErrorCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.type = 'error';\n this.properties = {\n errorType: {\n key: 'error_type',\n required: true,\n type: 'string',\n },\n name: {\n key: 'name',\n required: false,\n type: 'string',\n },\n type: {\n key: 'type',\n required: false,\n type: 'string',\n },\n underlyingError: {\n key: 'parent_error',\n required: false,\n type: 'string',\n },\n description: {\n key: 'description',\n required: false,\n type: 'string',\n },\n };\n }\n getError(data) {\n var _a, _b, _c, _d;\n switch (data.errorType) {\n case 'missingRequiredArgument':\n return new AdaptyError({\n adaptyCode: 3001,\n message: `Required parameter \"${data.name} was not passed to a native module\"`,\n });\n case 'typeMismatch':\n return new AdaptyError({\n adaptyCode: 3001,\n message: `Passed parameter \"${data.name}\" has invalid type. Expected type: ${data.type}\"`,\n });\n case 'encodingFailed':\n return new AdaptyError({\n adaptyCode: 2009,\n message: `Bridge layer failed to encode response. Bridge error: ${JSON.stringify((_a = data.underlyingError) !== null && _a !== void 0 ? _a : {})}\"`,\n });\n case 'wrongParam':\n case 'WRONG_PARAMETER':\n return new AdaptyError({\n adaptyCode: 3001,\n message: (_b = data.name) !== null && _b !== void 0 ? _b : `Wrong parameter. Bridge error: ${JSON.stringify((_c = data.underlyingError) !== null && _c !== void 0 ? _c : {})}\"`,\n });\n case 'methodNotImplemented':\n return new AdaptyError({\n adaptyCode: 2003,\n message: 'Requested bridge handle not found',\n });\n case 'unsupportedIosVersion':\n return new AdaptyError({\n adaptyCode: 2003,\n message: 'Unsupported iOS version',\n });\n case 'unexpectedError':\n default:\n return new AdaptyError({\n adaptyCode: 0,\n message: `Unexpected error occurred: ${JSON.stringify((_d = data.underlyingError) !== null && _d !== void 0 ? _d : {})}`,\n });\n }\n }\n}\n//# sourceMappingURL=bridge-error.js.map","import { Capacitor } from '@capacitor/core';\nexport function getPlatform() {\n return Capacitor.getPlatform();\n}\n//# sourceMappingURL=platform.js.map","import { SimpleCoder } from './coder';\nimport { AdaptyProfileCoder } from './adapty-profile';\nimport { getPlatform } from '../utils/platform';\nexport class AdaptyPurchaseResultCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n type: {\n key: 'type',\n required: true,\n type: 'string',\n },\n };\n }\n decode(data) {\n const baseResult = super.decode(data);\n if (baseResult.type === 'success') {\n if (!data.profile) {\n throw new Error('Profile is required for success type of purchase result');\n }\n const platform = getPlatform();\n const anyData = data;\n return Object.assign(Object.assign(Object.assign(Object.assign({}, baseResult), { profile: new AdaptyProfileCoder().decode(data.profile) }), (platform === 'ios' && anyData.apple_jws_transaction\n ? { ios: { jwsTransaction: anyData.apple_jws_transaction } }\n : {})), (platform === 'android' && anyData.google_purchase_token\n ? { android: { purchaseToken: anyData.google_purchase_token } }\n : {}));\n }\n return baseResult;\n }\n encode(data) {\n var _a, _b;\n const { type } = data;\n if (type === 'success') {\n if (!('profile' in data)) {\n throw new Error('Profile is required for success type of purchase result');\n }\n const platform = getPlatform();\n const result = {\n type: 'success',\n profile: new AdaptyProfileCoder().encode(data.profile),\n };\n if (platform === 'ios' && ((_a = data.ios) === null || _a === void 0 ? void 0 : _a.jwsTransaction)) {\n result.apple_jws_transaction = data.ios.jwsTransaction;\n }\n if (platform === 'android' && ((_b = data.android) === null || _b === void 0 ? void 0 : _b.purchaseToken)) {\n result.google_purchase_token = data.android.purchaseToken;\n }\n return result;\n }\n return super.encode({ type });\n }\n}\n//# sourceMappingURL=adapty-purchase-result.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyOnboardingBuilderCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n url: {\n key: 'config_url',\n required: true,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-onboarding-builder.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { Coder } from './coder';\nimport { AdaptyRemoteConfigCoder } from './adapty-remote-config';\nimport { AdaptyOnboardingBuilderCoder } from './adapty-onboarding-builder';\nimport { AdaptyPlacementCoder } from './adapty-placement';\nexport class AdaptyOnboardingCoder extends Coder {\n constructor() {\n super(...arguments);\n this.properties = {\n placement: {\n key: 'placement',\n required: true,\n type: 'object',\n converter: new AdaptyPlacementCoder(),\n },\n id: { key: 'onboarding_id', required: true, type: 'string' },\n name: { key: 'onboarding_name', required: true, type: 'string' },\n remoteConfig: {\n key: 'remote_config',\n required: false,\n type: 'object',\n converter: new AdaptyRemoteConfigCoder(),\n },\n variationId: { key: 'variation_id', required: true, type: 'string' },\n version: { key: 'response_created_at', required: false, type: 'number' },\n onboardingBuilder: {\n key: 'onboarding_builder',\n required: false,\n type: 'object',\n converter: new AdaptyOnboardingBuilderCoder(),\n },\n payloadData: { key: 'payload_data', required: false, type: 'string' },\n requestLocale: { key: 'request_locale', required: true, type: 'string' },\n };\n }\n decode(data) {\n const codablePart = super.decode(data);\n return Object.assign(Object.assign({}, codablePart), { hasViewConfiguration: codablePart.onboardingBuilder !== undefined });\n }\n encode(data) {\n const { hasViewConfiguration } = data, codablePart = __rest(data, [\"hasViewConfiguration\"]);\n return super.encode(codablePart);\n }\n}\n//# sourceMappingURL=adapty-onboarding.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyUiOnboardingMetaCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n onboardingId: {\n key: 'onboarding_id',\n required: true,\n type: 'string',\n },\n screenClientId: {\n key: 'screen_cid',\n required: true,\n type: 'string',\n },\n screenIndex: {\n key: 'screen_index',\n required: true,\n type: 'number',\n },\n totalScreens: {\n key: 'total_screens',\n required: true,\n type: 'number',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-ui-onboarding-meta.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyUiOnboardingStateParamsCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n id: {\n key: 'id',\n required: true,\n type: 'string',\n },\n value: {\n key: 'value',\n required: true,\n type: 'string',\n },\n label: {\n key: 'label',\n required: true,\n type: 'string',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-ui-onboarding-state-params.js.map","import { SimpleCoder } from './coder';\nimport { AdaptyUiOnboardingStateParamsCoder } from './adapty-ui-onboarding-state-params';\nexport class AdaptyUiOnboardingStateUpdatedActionCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.paramCoder = new AdaptyUiOnboardingStateParamsCoder();\n this.properties = {\n elementId: {\n key: 'element_id',\n required: true,\n type: 'string',\n },\n elementType: {\n key: 'element_type',\n required: true,\n type: 'string',\n },\n };\n }\n decode(data) {\n const base = super.decode(data);\n const { elementType } = base;\n switch (elementType) {\n case 'select':\n return Object.assign(Object.assign({}, base), { elementType: 'select', value: this.paramCoder.decode(data.value) });\n case 'multi_select':\n return Object.assign(Object.assign({}, base), { elementType: 'multi_select', value: Array.isArray(data.value)\n ? data.value.map(v => this.paramCoder.decode(v))\n : [] });\n case 'input':\n return Object.assign(Object.assign({}, base), { value: data.value });\n case 'date_picker':\n return Object.assign(Object.assign({}, base), { value: data.value });\n default:\n throw new Error(`Unknown element_type: ${elementType}`);\n }\n }\n encode(data) {\n const base = super.encode(data);\n const { elementType } = data;\n switch (elementType) {\n case 'select':\n return Object.assign(Object.assign({}, base), { element_type: 'select', value: this.paramCoder.encode(data.value) });\n case 'multi_select':\n return Object.assign(Object.assign({}, base), { element_type: 'multi_select', value: data.value.map(v => this.paramCoder.encode(v)) });\n case 'input':\n return Object.assign(Object.assign({}, base), { element_type: 'input', value: data.value });\n case 'date_picker':\n return Object.assign(Object.assign({}, base), { element_type: 'date_picker', value: data.value });\n default:\n throw new Error(`Unknown elementType: ${elementType}`);\n }\n }\n}\n//# sourceMappingURL=adapty-ui-onboarding-state-updated-action.js.map","import { DateCoder } from './date';\nexport class AdaptyInstallationStatusCoder {\n encode(model) {\n if (model.status === 'determined') {\n const details = {\n install_time: new DateCoder().encode(model.details.installTime),\n app_launch_count: model.details.appLaunchCount,\n };\n if (model.details.installId) {\n details.install_id = model.details.installId;\n }\n if (model.details.payload) {\n details.payload = model.details.payload;\n }\n return {\n status: 'determined',\n details,\n };\n }\n return {\n status: model.status,\n };\n }\n decode(json) {\n if (json.status === 'determined') {\n const details = {\n installTime: new DateCoder().decode(json.details.install_time),\n appLaunchCount: json.details.app_launch_count,\n installId: json.details.install_id,\n payload: json.details.payload,\n };\n return {\n status: 'determined',\n details,\n };\n }\n return {\n status: json.status,\n };\n }\n}\n//# sourceMappingURL=adapty-installation-status.js.map","import { DateCoder } from './date';\nexport class AdaptyInstallationDetailsCoder {\n encode(model) {\n const result = {\n install_time: new DateCoder().encode(model.installTime),\n app_launch_count: model.appLaunchCount,\n };\n if (model.installId) {\n result.install_id = model.installId;\n }\n if (model.payload) {\n result.payload = model.payload;\n }\n return result;\n }\n decode(json) {\n return {\n installTime: new DateCoder().decode(json.install_time),\n appLaunchCount: json.app_launch_count,\n installId: json.install_id,\n payload: json.payload,\n };\n }\n}\n//# sourceMappingURL=adapty-installation-details.js.map","import { AdaptyError } from '../adapty-error';\nimport { AdaptyNativeErrorCoder } from './adapty-native-error';\nimport { AdaptyPaywallCoder } from './adapty-paywall';\nimport { AdaptyPaywallProductCoder } from './adapty-paywall-product';\nimport { AdaptyProfileCoder } from './adapty-profile';\nimport { ArrayCoder } from './array';\nimport { BridgeErrorCoder } from './bridge-error';\nimport { AdaptyRemoteConfigCoder } from './adapty-remote-config';\nimport { AdaptyPaywallBuilderCoder } from './adapty-paywall-builder';\nimport { AdaptyPurchaseResultCoder } from './adapty-purchase-result';\nimport { AdaptyOnboardingCoder } from './adapty-onboarding';\nimport { AdaptyUiOnboardingMetaCoder } from './adapty-ui-onboarding-meta';\nimport { AdaptyUiOnboardingStateParamsCoder } from './adapty-ui-onboarding-state-params';\nimport { AdaptyUiOnboardingStateUpdatedActionCoder } from './adapty-ui-onboarding-state-updated-action';\nimport { AdaptyInstallationStatusCoder } from './adapty-installation-status';\nimport { AdaptyInstallationDetailsCoder } from './adapty-installation-details';\nconst AdaptyTypes = [\n 'AdaptyError',\n 'AdaptyProfile',\n 'AdaptyPurchaseResult',\n 'AdaptyPaywall',\n 'AdaptyPaywallProduct',\n 'AdaptyOnboarding',\n 'AdaptyRemoteConfig',\n 'AdaptyPaywallBuilder',\n 'AdaptyInstallationStatus',\n 'AdaptyInstallationDetails',\n 'AdaptyUiView',\n 'AdaptyUiDialogActionType',\n 'AdaptyUiOnboardingMeta',\n 'AdaptyUiOnboardingStateParams',\n 'AdaptyUiOnboardingStateUpdatedAction',\n 'Array<AdaptyPaywallProduct>',\n 'BridgeError',\n 'String',\n 'Boolean',\n 'Void',\n];\nexport function parseMethodResult(input, resultType, ctx) {\n const log = ctx === null || ctx === void 0 ? void 0 : ctx.decode({ methodName: 'parseMethodResult' });\n log === null || log === void 0 ? void 0 : log.start(() => ({ input }));\n let obj;\n // Attempt to parse the input into a JSON object\n try {\n obj = JSON.parse(input);\n }\n catch (error) {\n const adaptyError = AdaptyError.failedToDecode(`Failed to decode native response. JSON.parse raised an error: ${(error === null || error === void 0 ? void 0 : error.message) || ''}`);\n log === null || log === void 0 ? void 0 : log.failed(() => ({ adaptyError }));\n throw adaptyError;\n }\n if (obj.hasOwnProperty('success')) {\n if ([\n 'String',\n 'Boolean',\n 'Void',\n 'AdaptyUiView',\n 'AdaptyUiDialogActionType',\n ].includes(resultType)) {\n return obj.success;\n }\n const coder = getCoder(resultType, ctx);\n return coder === null || coder === void 0 ? void 0 : coder.decode(obj.success);\n }\n else if (obj.hasOwnProperty('error')) {\n const coder = getCoder('AdaptyError', ctx);\n const errorData = coder === null || coder === void 0 ? void 0 : coder.decode(obj.error);\n throw coder.getError(errorData);\n }\n else {\n const adaptyError = AdaptyError.failedToDecode(`Failed to decode native response. Response does not have expected \"success\" or \"error\" property`);\n log === null || log === void 0 ? void 0 : log.failed(() => ({ adaptyError }));\n throw adaptyError;\n }\n}\nexport function parseCommonEvent(event, input, ctx) {\n var _a, _b, _c;\n let obj;\n try {\n obj = JSON.parse(input);\n }\n catch (error) {\n throw AdaptyError.failedToDecode(`Failed to decode event: ${error === null || error === void 0 ? void 0 : error.message}`);\n }\n switch (event) {\n case 'did_load_latest_profile':\n return (_a = getCoder('AdaptyProfile', ctx)) === null || _a === void 0 ? void 0 : _a.decode(obj['profile']);\n case 'on_installation_details_success':\n return (_b = getCoder('AdaptyInstallationDetails', ctx)) === null || _b === void 0 ? void 0 : _b.decode(obj['details']);\n case 'on_installation_details_fail':\n return (_c = getCoder('AdaptyError', ctx)) === null || _c === void 0 ? void 0 : _c.decode(obj['error']);\n default:\n return null;\n }\n}\nfunction getCoder(type, ctx) {\n ctx === null || ctx === void 0 ? void 0 : ctx.stack;\n switch (type) {\n case 'AdaptyError':\n return new AdaptyNativeErrorCoder();\n case 'AdaptyProfile':\n return new AdaptyProfileCoder();\n case 'AdaptyPaywall':\n return new AdaptyPaywallCoder();\n case 'AdaptyPaywallProduct':\n return new AdaptyPaywallProductCoder();\n case 'AdaptyRemoteConfig':\n return new AdaptyRemoteConfigCoder();\n case 'AdaptyPaywallBuilder':\n return new AdaptyPaywallBuilderCoder();\n case 'AdaptyOnboarding':\n return new AdaptyOnboardingCoder();\n case 'AdaptyPurchaseResult':\n return new AdaptyPurchaseResultCoder();\n case 'AdaptyInstallationStatus':\n return new AdaptyInstallationStatusCoder();\n case 'AdaptyInstallationDetails':\n return new AdaptyInstallationDetailsCoder();\n case 'AdaptyUiOnboardingMeta':\n return new AdaptyUiOnboardingMetaCoder();\n case 'AdaptyUiOnboardingStateParams':\n return new AdaptyUiOnboardingStateParamsCoder();\n case 'AdaptyUiOnboardingStateUpdatedAction':\n return new AdaptyUiOnboardingStateUpdatedActionCoder();\n case 'BridgeError':\n return new BridgeErrorCoder();\n case 'Array<AdaptyPaywallProduct>':\n return new ArrayCoder(AdaptyPaywallProductCoder);\n case 'String':\n return null;\n }\n // @ts-ignore\n throw AdaptyError.failedToDecode(`Failed to decode native response. Response has unexpected \"type\" property: ${type}`);\n}\n//# sourceMappingURL=parse.js.map","/**\n * Log levels for the SDK\n *\n * @remarks\n * Logging is performed on a native side.\n * So you are expected to watch logs in Xcode or Android Studio.\n */\nexport const LogLevel = Object.freeze({\n /**\n * Logs any additional information that may be useful during debugging,\n * such as function calls, API queries, etc.\n */\n VERBOSE: 'verbose',\n /**\n * Logs only errors\n */\n ERROR: 'error',\n /**\n * Logs messages from the SDK\n * that do not cause critical errors,\n * but are worth paying attention to\n */\n WARN: 'warn',\n /**\n * Logs various information messages,\n * such as those that log the lifecycle of various modules\n */\n INFO: 'info',\n});\nexport const FetchPolicy = Object.freeze({\n ReloadRevalidatingCacheData: 'reload_revalidating_cache_data',\n ReturnCacheDataElseLoad: 'return_cache_data_else_load',\n ReturnCacheDataIfNotExpiredElseLoad: 'return_cache_data_if_not_expired_else_load',\n});\nexport const AdaptyAndroidSubscriptionUpdateReplacementMode = Object.freeze({\n ChargeFullPrice: 'charge_full_price',\n Deferred: 'deferred',\n WithoutProration: 'without_proration',\n ChargeProratedPrice: 'charge_prorated_price',\n WithTimeProration: 'with_time_proration',\n});\n//# sourceMappingURL=inputs.js.map","function getConsoleForLevel(level) {\n /* eslint-disable no-console */\n switch (level) {\n case 'error':\n return console.error;\n case 'warn':\n return console.warn;\n case 'verbose':\n return console.debug;\n case 'info':\n default:\n return console.info;\n }\n /* eslint-enable no-console */\n}\nexport const consoleLogSink = {\n id: 'console',\n handle: (event) => {\n const logger = getConsoleForLevel(event.level);\n logger(event.formatted, event.params);\n },\n};\n//# sourceMappingURL=console-sink.js.map","export default '3.16.0';\n//# sourceMappingURL=version.js.map","import { LogLevel } from '../types/inputs';\nimport { consoleLogSink } from './console-sink';\nimport VERSION from '../../version';\nexport class Log {\n // Formats a message for logging\n static formatMessage(message, funcName) {\n const now = new Date().toISOString();\n const version = VERSION;\n return `[${now}] [adapty@${version}] \"${funcName}\": ${message}`;\n }\n /** Configure JS logger: replace sinks and/or set default metadata */\n static configure(config) {\n var _a;\n if (config.sinks) {\n for (const sink of this.sinks)\n (_a = sink.destroy) === null || _a === void 0 ? void 0 : _a.call(sink);\n this.sinks = config.sinks.slice();\n }\n this.defaultMeta = config.defaultMeta;\n }\n /** Register additional sink */\n static addSink(sink) {\n this.sinks.push(sink);\n }\n /** Remove sink by id and call its destroy if present */\n static removeSink(id) {\n var _a;\n const sink = this.sinks.find(sink => sink.id === id);\n this.sinks = this.sinks.filter(sink => sink.id !== id);\n (_a = sink === null || sink === void 0 ? void 0 : sink.destroy) === null || _a === void 0 ? void 0 : _a.call(sink);\n }\n /** Clear all sinks and destroy them */\n static clearSinks() {\n var _a;\n const prev = this.sinks;\n this.sinks = [];\n for (const sink of prev)\n (_a = sink.destroy) === null || _a === void 0 ? void 0 : _a.call(sink);\n }\n /**\n * Gets the appropriate log level integer for a log level.\n * @internal\n */\n static getLogLevelInt(logLevel) {\n switch (logLevel) {\n case LogLevel.ERROR:\n return 0;\n case LogLevel.WARN:\n return 1;\n case LogLevel.INFO:\n return 2;\n case LogLevel.VERBOSE:\n return 3;\n }\n }\n /**\n * Logs a message to the console if the log level is appropriate.\n * Uses lazy evaluation to avoid unnecessary computations.\n * @internal\n */\n static log(logLevel, funcName, message, params) {\n if (!Log.logLevel) {\n return;\n }\n const currentLevel = Log.getLogLevelInt(Log.logLevel);\n const messageLevel = Log.getLogLevelInt(logLevel);\n if (messageLevel <= currentLevel) {\n // Lazy evaluation: only compute once per entry\n const resolvedMessage = message();\n const resolvedParams = params ? params() : undefined;\n const mergedParams = this.defaultMeta\n ? Object.assign(Object.assign({}, this.defaultMeta), (resolvedParams !== null && resolvedParams !== void 0 ? resolvedParams : {})) : resolvedParams;\n const formatted = Log.formatMessage(resolvedMessage, funcName);\n const event = {\n timestamp: new Date().toISOString(),\n version: String(VERSION),\n level: logLevel,\n funcName,\n message: resolvedMessage,\n params: mergedParams,\n formatted,\n };\n for (const sink of this.sinks) {\n if (sink.levels && !sink.levels.includes(logLevel))\n continue;\n try {\n sink.handle(event);\n }\n catch (_a) {\n // ignore sink errors\n }\n }\n }\n }\n static info(funcName, message, params) {\n this.log(LogLevel.INFO, funcName, message, params);\n }\n static warn(funcName, message, params) {\n this.log(LogLevel.WARN, funcName, message, params);\n }\n static error(funcName, message, params) {\n this.log(LogLevel.ERROR, funcName, message, params);\n }\n static verbose(funcName, message, params) {\n this.log(LogLevel.VERBOSE, funcName, message, params);\n }\n}\nLog.logLevel = null;\nLog.sinks = [consoleLogSink];\n//# sourceMappingURL=log.js.map","export class LogScope {\n constructor(args) {\n this.methodName = args.methodName;\n this.onStart = args.onStart;\n this.onSuccess = args.onSuccess;\n this.onFailed = args.onFailed;\n this.onWait = args.onWait;\n this.onWaitComplete = args.onWaitComplete;\n }\n start(args) {\n this.onStart(args);\n }\n wait(args) {\n this.onWait(args);\n }\n waitComplete(args) {\n this.onWaitComplete(args);\n }\n success(args) {\n this.onSuccess(args);\n }\n failed(args) {\n this.onFailed(args);\n }\n}\n//# sourceMappingURL=log-scope.js.map","import { Log } from './log';\nimport { LogScope } from './log-scope';\n// LogContext instance is a logger context for a single call to a native SDK method\n// It accumulates logs for each step of the call\nexport class LogContext {\n constructor() {\n this.stack = [];\n }\n createScope(step, args, message) {\n return new LogScope(Object.assign(Object.assign({}, args), { onStart: (payload) => {\n this.stack.push({ action: step, fn: args.methodName, payload });\n Log.verbose(args.methodName, () => `${message}...`, () => payload());\n }, onSuccess: (payload) => {\n this.stack.push({\n action: step,\n fn: args.methodName,\n payload,\n done: true,\n });\n Log.verbose(args.methodName, () => `${message}: OK`, () => payload());\n }, onFailed: (payload) => {\n this.stack.push({\n action: step,\n fn: args.methodName,\n payload,\n error: true,\n });\n const resolvedStack = this.stack.map(s => (Object.assign(Object.assign({}, s), { payload: s.payload() })));\n const p = payload();\n p['__stack__'] = resolvedStack;\n Log.error(args.methodName, () => `${message}: FAILED`, () => p);\n }, onWait: (payload) => {\n this.stack.push({ action: step, fn: args.methodName, payload });\n Log.verbose(args.methodName, () => `<HOLD> ${message}`, () => payload());\n }, onWaitComplete: (payload) => {\n this.stack.push({ action: step, fn: args.methodName, payload });\n Log.verbose(args.methodName, () => `<UNLOCKED> ${message}`, () => payload());\n } }));\n }\n // Creates a scope for a event listener\n event(method) {\n return this.createScope('EVENT', method, `Receiving event \"${method.methodName}\"`);\n }\n // Create a scope for a public call\n call(args) {\n return this.createScope('CALL', args, 'Calling method');\n }\n // Creates a scope for encoding an object\n encode(args) {\n return this.createScope('ENCODE', args, 'Encoding object');\n }\n // Creates a scope for calling a bridge function\n bridge(args) {\n return this.createScope('BRIDGE', args, 'Calling bridge function');\n }\n // Creates a scope for decoding a string\n decode(args) {\n return this.createScope('DECODE', args, 'Decoding string');\n }\n}\n//# sourceMappingURL=log-context.js.map","import { AdaptyCapacitorPlugin } from './bridge/plugin';\nimport { parseCommonEvent } from './shared/coders/parse';\nimport { LogContext } from './shared/logger';\n// Type-safe parser functions for each event\nfunction parseProfileEvent(raw, eventCtx) {\n const profile = parseCommonEvent('did_load_latest_profile', raw, eventCtx);\n return profile ? { profile: profile } : null;\n}\nfunction parseInstallationDetailsSuccessEvent(raw, eventCtx) {\n const details = parseCommonEvent('on_installation_details_success', raw, eventCtx);\n return details ? { details: details } : null;\n}\nfunction parseInstallationDetailsFailEvent(raw, eventCtx) {\n const error = parseCommonEvent('on_installation_details_fail', raw, eventCtx);\n return error ? { error: error } : null;\n}\nconst EVENT_MAP = {\n onLatestProfileLoad: {\n native: 'did_load_latest_profile',\n parse: parseProfileEvent,\n },\n onInstallationDetailsSuccess: {\n native: 'on_installation_details_success',\n parse: parseInstallationDetailsSuccessEvent,\n },\n onInstallationDetailsFail: {\n native: 'on_installation_details_fail',\n parse: parseInstallationDetailsFailEvent,\n },\n};\nexport class AdaptyEmitter {\n constructor() {\n this.nativeEventListeners = new Map();\n this.externalHandlers = new Map();\n this.addListener = async (eventName, listener) => {\n var _a;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'addListener' });\n log.start(() => ({ eventName }));\n const eventConfig = EVENT_MAP[eventName];\n if (!eventConfig) {\n throw new Error(`[Adapty] Unsupported event: ${eventName}`);\n }\n const handlerId = `${eventName}_${Math.random().toString(36)}`;\n const handlersForEvent = (_a = this.externalHandlers.get(eventConfig.native)) !== null && _a !== void 0 ? _a : [];\n handlersForEvent.push({\n id: handlerId,\n handlerName: eventName,\n listener: listener,\n config: eventConfig,\n });\n this.externalHandlers.set(eventConfig.native, handlersForEvent);\n if (!this.nativeEventListeners.has(eventConfig.native)) {\n const handlers = this.externalHandlers;\n const subscription = await AdaptyCapacitorPlugin.addListener(eventConfig.native, (arg) => {\n var _a;\n const eventCtx = new LogContext();\n const eventLog = eventCtx.event({ methodName: eventConfig.native });\n eventLog.start(() => ({ raw: arg }));\n const rawEventData = arg === null || arg === void 0 ? void 0 : arg.data;\n if (typeof rawEventData !== 'string') {\n eventLog.failed(() => ({ error: new Error('[Adapty] Expected event data to be JSON string') }));\n return;\n }\n const eventHandlers = (_a = handlers.get(eventConfig.native)) !== null && _a !== void 0 ? _a : [];\n for (const { handlerName, listener, config } of eventHandlers) {\n let payload = null;\n try {\n payload = config.parse(rawEventData, eventCtx);\n }\n catch (err) {\n eventLog.failed(() => ({ error: err }));\n continue;\n }\n if (!payload) {\n eventLog.failed(() => ({ error: new Error('[Adapty] Parsed payload is null') }));\n continue;\n }\n try {\n listener(payload);\n eventLog.success(() => ({ message: 'Event handled successfully', handlerName }));\n }\n catch (handlerError) {\n eventLog.failed(() => ({ handlerName, handlerError }));\n }\n }\n });\n this.nativeEventListeners.set(eventConfig.native, subscription);\n }\n // Return wrapper handle that can remove this specific handler\n const wrappedHandle = {\n remove: async () => {\n await this.removeHandler(eventConfig.native, handlerId);\n },\n };\n return wrappedHandle;\n };\n }\n async removeHandler(nativeEvent, handlerId) {\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'removeHandler' });\n log.start(() => ({ nativeEvent, handlerId }));\n const handlersForEvent = this.externalHandlers.get(nativeEvent);\n if (!handlersForEvent) {\n log.success(() => ({ message: 'No handlers found for native event', nativeEvent }));\n return;\n }\n const initialHandlersCount = handlersForEvent.length;\n // Remove the specific handler\n const filteredHandlers = handlersForEvent.filter((h) => h.id !== handlerId);\n this.externalHandlers.set(nativeEvent, filteredHandlers);\n const handlerRemoved = filteredHandlers.length < initialHandlersCount;\n if (!handlerRemoved) {\n log.success(() => ({\n message: 'Handler not found in handlers list',\n nativeEvent,\n handlerId,\n remainingHandlers: filteredHandlers.length,\n }));\n return;\n }\n // If no more handlers for this native event, remove the subscription\n if (filteredHandlers.length === 0) {\n this.externalHandlers.delete(nativeEvent);\n const subscription = this.nativeEventListeners.get(nativeEvent);\n if (subscription) {\n try {\n await subscription.remove();\n this.nativeEventListeners.delete(nativeEvent);\n log.success(() => ({\n message: 'Handler and native subscription removed successfully',\n nativeEvent,\n handlerId,\n }));\n }\n catch (error) {\n log.failed(() => ({\n message: `Failed to remove subscription for ${nativeEvent}`,\n error,\n nativeEvent,\n handlerId,\n }));\n }\n }\n else {\n log.success(() => ({\n message: 'Handler removed, no native subscription found',\n nativeEvent,\n handlerId,\n }));\n }\n }\n else {\n log.success(() => ({\n message: 'Handler removed successfully',\n nativeEvent,\n handlerId,\n remainingHandlers: filteredHandlers.length,\n }));\n }\n }\n async removeAllListeners() {\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'removeAllListeners' });\n log.start(() => ({ listenersCount: this.nativeEventListeners.size }));\n try {\n const removePromises = Array.from(this.nativeEventListeners.values()).map((handle, index) => handle.remove().catch((error) => {\n log.failed(() => ({\n message: `Failed to remove event listener ${index}`,\n error,\n index,\n }));\n }));\n this.nativeEventListeners.clear();\n this.externalHandlers.clear();\n await Promise.all(removePromises);\n log.success(() => ({ message: 'All listeners removed successfully' }));\n }\n catch (error) {\n log.failed(() => ({ error }));\n throw error;\n }\n }\n}\n//# sourceMappingURL=adapty-emitter.js.map","import { AdaptyInstallationStatusCoder } from './shared/coders/adapty-installation-status';\nimport { AdaptyOnboardingCoder } from './shared/coders/adapty-onboarding';\nimport { AdaptyPaywallCoder } from './shared/coders/adapty-paywall';\nimport { AdaptyPaywallProductCoder } from './shared/coders/adapty-paywall-product';\nimport { AdaptyProfileCoder } from './shared/coders/adapty-profile';\nimport { AdaptyPurchaseResultCoder } from './shared/coders/adapty-purchase-result';\nimport { createArrayCoder } from './shared/coders/array';\nconst coderRegistry = {\n get_profile: AdaptyProfileCoder,\n restore_purchases: AdaptyProfileCoder,\n get_paywall: AdaptyPaywallCoder,\n get_paywall_for_default_audience: AdaptyPaywallCoder,\n get_paywall_products: createArrayCoder(AdaptyPaywallProductCoder),\n get_onboarding: AdaptyOnboardingCoder,\n get_onboarding_for_default_audience: AdaptyOnboardingCoder,\n make_purchase: AdaptyPurchaseResultCoder,\n get_current_installation_status: AdaptyInstallationStatusCoder,\n};\nexport function getCoder(method) {\n const CoderClass = coderRegistry[method];\n if (!CoderClass)\n return null;\n return new CoderClass();\n}\n//# sourceMappingURL=coder-registry.js.map","import { FetchPolicy } from './shared/types/inputs';\nexport const defaultAdaptyOptions = {\n get_paywall: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n loadTimeoutMs: 5000,\n },\n },\n get_paywall_for_default_audience: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n },\n },\n get_onboarding: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n loadTimeoutMs: 5000,\n },\n },\n get_onboarding_for_default_audience: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n loadTimeoutMs: 5000,\n },\n },\n};\n//# sourceMappingURL=default-configs.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyUiMediaCacheCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n memoryStorageTotalCostLimit: {\n key: 'memory_storage_total_cost_limit',\n required: false,\n type: 'number',\n },\n memoryStorageCountLimit: {\n key: 'memory_storage_count_limit',\n required: false,\n type: 'number',\n },\n diskStorageSizeLimit: {\n key: 'disk_storage_size_limit',\n required: false,\n type: 'number',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-ui-media-cache.js.map","import { AdaptyUiMediaCacheCoder } from './adapty-ui-media-cache';\nimport { getPlatform } from '../utils/platform';\nimport version from '../../version';\nexport class AdaptyConfigurationCoder {\n encode(apiKey, params) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;\n const config = {\n api_key: apiKey,\n cross_platform_sdk_name: 'capacitor',\n cross_platform_sdk_version: version,\n };\n if (params.customerUserId) {\n config['customer_user_id'] = params.customerUserId;\n }\n config['observer_mode'] = (_a = params.observerMode) !== null && _a !== void 0 ? _a : false;\n config['ip_address_collection_disabled'] =\n (_b = params.ipAddressCollectionDisabled) !== null && _b !== void 0 ? _b : false;\n if (params.logLevel) {\n config['log_level'] = params.logLevel;\n }\n config['server_cluster'] = (_c = params.serverCluster) !== null && _c !== void 0 ? _c : 'default';\n if (params.backendProxyHost) {\n config['backend_proxy_host'] = params.backendProxyHost;\n }\n if (params.backendProxyPort) {\n config['backend_proxy_port'] = params.backendProxyPort;\n }\n config['activate_ui'] = (_d = params.activateUi) !== null && _d !== void 0 ? _d : true;\n const mediaCacheCoder = new AdaptyUiMediaCacheCoder();\n config['media_cache'] = mediaCacheCoder.encode((_e = params.mediaCache) !== null && _e !== void 0 ? _e : {\n memoryStorageTotalCostLimit: 100 * 1024 * 1024,\n memoryStorageCountLimit: 2147483647,\n diskStorageSizeLimit: 100 * 1024 * 1024,\n });\n // For Capacitor, we need to handle platform-specific settings differently\n // These will be handled at runtime by the native layer\n const platform = getPlatform();\n if (((_f = params.ios) === null || _f === void 0 ? void 0 : _f.idfaCollectionDisabled) !== undefined) {\n config['apple_idfa_collection_disabled'] = params.ios.idfaCollectionDisabled;\n }\n if (((_g = params.ios) === null || _g === void 0 ? void 0 : _g.clearDataOnBackup) !== undefined) {\n config['clear_data_on_backup'] = params.ios.clearDataOnBackup;\n }\n if (platform === 'ios' && ((_h = params.ios) === null || _h === void 0 ? void 0 : _h.appAccountToken)) {\n config['customer_identity_parameters'] = {\n app_account_token: params.ios.appAccountToken,\n };\n }\n if (((_j = params.android) === null || _j === void 0 ? void 0 : _j.adIdCollectionDisabled) !== undefined) {\n config['google_adid_collection_disabled'] = params.android.adIdCollectionDisabled;\n }\n if (((_k = params.android) === null || _k === void 0 ? void 0 : _k.pendingPrepaidPlansEnabled) !== undefined) {\n config['google_enable_pending_prepaid_plans'] =\n params.android.pendingPrepaidPlansEnabled;\n }\n if (((_l = params.android) === null || _l === void 0 ? void 0 : _l.localAccessLevelAllowed) !== undefined) {\n config['google_local_access_level_allowed'] =\n params.android.localAccessLevelAllowed;\n }\n if (platform === 'android' && ((_m = params.android) === null || _m === void 0 ? void 0 : _m.obfuscatedAccountId)) {\n config['customer_identity_parameters'] = {\n obfuscated_account_id: params.android.obfuscatedAccountId,\n };\n }\n return config;\n }\n}\n//# sourceMappingURL=adapty-configuration.js.map","import { getPlatform } from '../utils/platform';\nexport class AdaptyIdentifyParamsCoder {\n encode(params) {\n var _a, _b;\n if (!params) {\n return undefined;\n }\n const result = {};\n const platform = getPlatform();\n if (platform === 'ios' && ((_a = params.ios) === null || _a === void 0 ? void 0 : _a.appAccountToken)) {\n result.app_account_token = params.ios.appAccountToken;\n }\n if (platform === 'android' && ((_b = params.android) === null || _b === void 0 ? void 0 : _b.obfuscatedAccountId)) {\n result.obfuscated_account_id = params.android.obfuscatedAccountId;\n }\n return Object.keys(result).length > 0 ? result : undefined;\n }\n}\n//# sourceMappingURL=adapty-identify-params.js.map","import { SimpleCoder } from './coder';\nexport class AdaptyProfileParametersCoder extends SimpleCoder {\n constructor() {\n super(...arguments);\n this.properties = {\n firstName: { key: 'first_name', required: false, type: 'string' },\n lastName: { key: 'last_name', required: false, type: 'string' },\n gender: { key: 'gender', required: false, type: 'string' },\n birthday: { key: 'birthday', required: false, type: 'string' },\n email: { key: 'email', required: false, type: 'string' },\n phoneNumber: { key: 'phone_number', required: false, type: 'string' },\n appTrackingTransparencyStatus: {\n key: 'att_status',\n required: false,\n type: 'number',\n },\n codableCustomAttributes: {\n key: 'custom_attributes',\n required: false,\n type: 'object',\n },\n analyticsDisabled: {\n key: 'analytics_disabled',\n required: false,\n type: 'boolean',\n },\n };\n }\n}\n//# sourceMappingURL=adapty-profile-parameters.js.map","function isDeprecatedType(data) {\n return ((data === null || data === void 0 ? void 0 : data.android) &&\n 'oldSubVendorProductId' in data.android &&\n 'prorationMode' in data.android);\n}\nexport class AdaptyPurchaseParamsCoder {\n encode(data) {\n const purchaseParams = {};\n if (isDeprecatedType(data)) {\n if (data.android) {\n purchaseParams['subscription_update_params'] = {\n replacement_mode: data.android.prorationMode,\n old_sub_vendor_product_id: data.android.oldSubVendorProductId,\n };\n if (data.android.isOfferPersonalized) {\n purchaseParams['is_offer_personalized'] =\n data.android.isOfferPersonalized;\n }\n }\n return purchaseParams;\n }\n if (data.android) {\n if (data.android.subscriptionUpdateParams) {\n purchaseParams['subscription_update_params'] = {\n replacement_mode: data.android.subscriptionUpdateParams.prorationMode,\n old_sub_vendor_product_id: data.android.subscriptionUpdateParams.oldSubVendorProductId,\n };\n }\n if (data.android.isOfferPersonalized !== undefined) {\n purchaseParams['is_offer_personalized'] =\n data.android.isOfferPersonalized;\n }\n }\n return purchaseParams;\n }\n}\n//# sourceMappingURL=adapty-purchase-params.js.map","/**\n * Type guard to check if response contains error\n */\nexport function isErrorResponse(response) {\n return 'error' in response && response.error !== undefined;\n}\n/**\n * Type guard to check if response contains success data\n */\nexport function isSuccessResponse(response) {\n return 'success' in response && response.success !== undefined;\n}\n//# sourceMappingURL=method-types.js.map","/**\n * Removes undefined properties from an object, preserving the original type structure\n * @param obj - Source object with potentially undefined values\n * @returns Object with undefined values filtered out\n */\nexport function filterUndefined(obj) {\n return Object.fromEntries(Object.entries(obj).filter(([_, value]) => value !== undefined));\n}\n//# sourceMappingURL=compact-object.js.map","/**\n * Checks if a value is a plain object (not an array, null, Date, etc.)\n */\nfunction isPlainObject(value) {\n return (value !== null &&\n typeof value === 'object' &&\n !Array.isArray(value) &&\n !(value instanceof Date) &&\n !(value instanceof RegExp) &&\n Object.prototype.toString.call(value) === '[object Object]');\n}\n/**\n * Deep merge implementation that replaces arrays and merges objects\n */\nfunction deepMerge(target, source, seen = new Set()) {\n // Handle null/undefined cases\n if (source === null || source === undefined) {\n return source;\n }\n if (target === null || target === undefined) {\n return source;\n }\n // Handle arrays - replace them (source overwrites target)\n if (Array.isArray(source)) {\n return source;\n }\n // If target is array but source is not, return source\n if (Array.isArray(target)) {\n return source;\n }\n // Handle plain objects - merge recursively\n if (isPlainObject(target) && isPlainObject(source)) {\n // Check for circular references\n if (seen.has(source) || seen.has(target)) {\n throw new Error('Converting circular structure to JSON');\n }\n seen.add(source);\n seen.add(target);\n const result = {};\n // Get all keys from both objects\n const allKeys = new Set([\n ...Object.keys(target),\n ...Object.keys(source)\n ]);\n for (const key of allKeys) {\n // Skip prototype pollution attempts\n if (key === '__proto__' || key === 'constructor' || key === 'prototype') {\n continue;\n }\n if (key in source) {\n if (key in target) {\n // Check for circular reference in values\n if (seen.has(source[key]) || seen.has(target[key])) {\n throw new Error('Converting circular structure to JSON');\n }\n // Recursively merge if key exists in both\n result[key] = deepMerge(target[key], source[key], seen);\n }\n else {\n // Check for circular reference in source value\n if (seen.has(source[key])) {\n throw new Error('Converting circular structure to JSON');\n }\n // Use source value if key only exists in source\n result[key] = source[key];\n }\n }\n else {\n // Check for circular reference in target value\n if (seen.has(target[key])) {\n throw new Error('Converting circular structure to JSON');\n }\n // Use target value if key only exists in target\n result[key] = target[key];\n }\n }\n seen.delete(source);\n seen.delete(target);\n return result;\n }\n // For all other cases (primitives, functions, dates, etc.), return source\n return source;\n}\n/**\n * Universal method for merging options with defaults\n * @param options - input options\n * @param defaults - default values\n * @returns merged object with TResult type\n */\nexport function mergeOptions(options, defaults) {\n return deepMerge(defaults, options);\n}\n//# sourceMappingURL=merge-options.js.map","function toJSON() {\n return {\n message: this.message,\n name: this.name,\n stack: this.stack,\n originalError: this.originalError instanceof Error\n ? {\n message: this.originalError.message,\n name: this.originalError.name,\n }\n : this.originalError,\n };\n}\n/**\n * Wraps a user-provided callback with error context enrichment.\n * Catches exceptions and wraps them with source and handler information.\n */\nexport function withErrorContext(callback, handlerName, source) {\n const wrapped = function (...args) {\n try {\n return callback.apply(this, args);\n }\n catch (error) {\n const message = `Unhandled exception in user's handler in ${source}.${handlerName}`;\n const wrappedError = new Error(message);\n wrappedError.originalError = error;\n wrappedError.toJSON = toJSON;\n throw wrappedError;\n }\n };\n return wrapped;\n}\n//# sourceMappingURL=with-error-context.js.map","// PluginListenerHandle is no longer referenced directly in this file\nimport { Capacitor } from '@capacitor/core';\nimport { AdaptyEmitter } from './adapty-emitter';\nimport { AdaptyCapacitorPlugin } from './bridge/plugin';\nimport { getCoder } from './coder-registry';\nimport { defaultAdaptyOptions } from './default-configs';\nimport { AdaptyConfigurationCoder } from './shared/coders/adapty-configuration';\nimport { AdaptyIdentifyParamsCoder } from './shared/coders/adapty-identify-params';\nimport { AdaptyPaywallCoder } from './shared/coders/adapty-paywall';\nimport { AdaptyPaywallProductCoder } from './shared/coders/adapty-paywall-product';\nimport { AdaptyProfileParametersCoder } from './shared/coders/adapty-profile-parameters';\nimport { AdaptyPurchaseParamsCoder } from './shared/coders/adapty-purchase-params';\nimport { Log, LogContext } from './shared/logger';\nimport { isErrorResponse, isSuccessResponse, } from './shared/types/method-types';\nimport { filterUndefined } from './shared/utils/compact-object';\nimport { mergeOptions } from './shared/utils/merge-options';\nimport { withErrorContext } from './shared/utils/with-error-context';\n/**\n * Entry point for the Adapty SDK.\n *\n * @remarks\n * This is the main Adapty class, excluding UI rendering functionality.\n *\n * @public\n */\nexport class Adapty {\n constructor() {\n this.activating = null;\n this.resolveHeldActivation = null;\n this.emitter = new AdaptyEmitter();\n this.nonWaitingMethods = [\n 'activate',\n 'is_activated',\n 'get_paywall_for_default_audience',\n 'get_onboarding_for_default_audience',\n 'set_log_level',\n 'set_fallback',\n ];\n this.options = defaultAdaptyOptions;\n /**\n * Adds an event listener for SDK events.\n *\n * @remarks\n * You can listen to various events from the Adapty SDK such as profile updates.\n * The listener will be called whenever the corresponding event occurs.\n *\n * @param eventName - The name of the event to listen to.\n * @param listenerFunc - The function to call when the event occurs.\n * @returns A listener handle that can be used to remove the listener.\n *\n * @example\n * Listen to profile updates\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * const listener = adapty.addListener('onLatestProfileLoad', (profile) => {\n * console.log('Profile updated:', profile);\n * const isSubscribed = profile.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n * if (isSubscribed) {\n * console.log('User has premium access');\n * }\n * });\n *\n * // Later, remove the listener\n * listener.remove();\n * ```\n */\n this.addListener = (eventName, listenerFunc) => {\n const wrappedListener = withErrorContext(listenerFunc, eventName, 'Adapty');\n return this.emitter.addListener(eventName, wrappedListener);\n };\n }\n /**\n * Helper method for logging encode operations\n */\n encodeWithLogging(coder, data, methodName, parentCtx) {\n if (!parentCtx) {\n return coder.encode(data);\n }\n const encodeLog = parentCtx.encode({ methodName: `encode/${methodName}` });\n encodeLog.start(() => ({ data }));\n try {\n const result = coder.encode(data);\n encodeLog.success(() => ({ result }));\n return result;\n }\n catch (error) {\n encodeLog.failed(() => ({ error }));\n throw error;\n }\n }\n /**\n * Handle method calls through crossplatform bridge with type safety\n * @internal\n */\n async handleMethodCall(methodName, args, ctx, log) {\n // Hold on deferred activation first\n if (this.resolveHeldActivation && !this.nonWaitingMethods.includes(methodName)) {\n log.wait(() => ({}));\n await this.resolveHeldActivation();\n this.resolveHeldActivation = null;\n log.waitComplete(() => ({}));\n }\n // Then wait for ongoing activation if required\n if (this.activating && (!this.nonWaitingMethods.includes(methodName) || methodName === 'is_activated')) {\n log.wait(() => ({}));\n await this.activating;\n log.waitComplete(() => ({}));\n }\n const bridgeLog = ctx.bridge({ methodName: `fetch/${methodName}` });\n bridgeLog.start(() => ({ method: methodName, args }));\n try {\n const result = await AdaptyCapacitorPlugin.handleMethodCall({\n methodName,\n args,\n });\n bridgeLog.success(() => ({ crossPlatformJson: result.crossPlatformJson }));\n // Parse JSON response with type safety\n const parsedResponse = JSON.parse(result.crossPlatformJson);\n // Check for native errors\n if (isErrorResponse(parsedResponse)) {\n const error = parsedResponse.error;\n const errorMessage = `Native error: ${error.message} (code: ${error.adaptyCode})`;\n const nativeError = new Error(errorMessage);\n log.failed(() => ({ error: nativeError }));\n throw nativeError;\n }\n // Extract success data with type safety\n if (isSuccessResponse(parsedResponse)) {\n const successData = parsedResponse.success;\n // Apply decoder if available for this method\n const coder = getCoder(methodName);\n let result;\n if (coder) {\n // Create decode scope for logging decode operations\n const decodeLog = ctx.decode({ methodName: `decode/${methodName}` });\n decodeLog.start(() => ({ successData }));\n try {\n result = coder.decode(successData);\n decodeLog.success(() => ({ result }));\n }\n catch (error) {\n decodeLog.failed(() => ({ error }));\n throw error;\n }\n }\n else {\n result = successData;\n }\n log.success(() => ({ result }));\n return result;\n }\n const formatError = new Error('Invalid response format: missing success or error field');\n log.failed(() => ({ error: formatError }));\n throw formatError;\n }\n catch (error) {\n bridgeLog.failed(() => ({ error }));\n // If it's our custom error and log wasn't called yet, log it\n if (error instanceof Error && !error.message.startsWith('{')) {\n if (!error.message.startsWith('Native error:')) {\n log.failed(() => ({ error }));\n }\n throw error;\n }\n // If JSON parsing fails, wrap the error\n const parseError = new Error(`Failed to parse native response: ${error}`);\n log.failed(() => ({ error: parseError }));\n throw parseError;\n }\n }\n isPaywallProduct(obj) {\n return 'vendorProductId' in obj;\n }\n /**\n * Initializes the Adapty SDK.\n *\n * @remarks\n * This method must be called in order for the SDK to work.\n * It is preferred to call it as early as possible in the app lifecycle,\n * so background activities can be performed and cache can be updated.\n *\n * @example\n *\n * @example\n * Usage with your user identifier from your system\n * ```typescript\n * await adapty.activate({\n * apiKey: 'YOUR_PUBLIC_SDK_KEY',\n * params: {\n * customerUserId: 'YOUR_USER_ID'\n * }\n * });\n * ```\n *\n * @param options - The activation options\n * @param options.apiKey - You can find it in your app settings in Adapty Dashboard App settings > General.\n * @param options.params - Optional activation parameters of type {@link ActivateParamsInput}.\n * @returns A promise that resolves when the SDK is activated.\n * @throws Error if the SDK is already activated or if the API key is invalid.\n */\n async activate(options) {\n const { apiKey, params = {} } = options;\n // Validate API key\n if (!apiKey || typeof apiKey !== 'string' || apiKey.trim().length === 0) {\n throw new Error('API key is required and must be a non-empty string');\n }\n // Prevent multiple activations\n if (this.activating) {\n await this.activating;\n return;\n }\n // Check if already activated (if __ignoreActivationOnFastRefresh is enabled)\n if (params.__ignoreActivationOnFastRefresh) {\n try {\n const isActivated = await this.isActivated();\n if (isActivated) {\n return;\n }\n }\n catch (error) {\n // Continue with activation if we can't check activation status\n }\n }\n // Defer activation if requested (for debugging) — start activation lazily on first blocked call\n if (params.__debugDeferActivation) {\n return new Promise((resolve) => {\n // Do not start activation immediately. It will be started when a blocked method comes in.\n this.resolveHeldActivation = async () => {\n this.activating = this.performActivation(apiKey, params);\n try {\n await this.activating;\n }\n finally {\n this.activating = null;\n }\n resolve();\n };\n });\n }\n // Perform activation\n this.activating = this.performActivation(apiKey, params);\n await this.activating;\n this.activating = null;\n }\n async performActivation(apiKey, params) {\n const method = 'activate';\n // Set log level before creating LogContext\n const logLevel = params.logLevel;\n Log.logLevel = logLevel || null;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ apiKey, params }));\n const configurationCoder = new AdaptyConfigurationCoder();\n const configuration = configurationCoder.encode(apiKey, params);\n const activateRequestWithUndefined = {\n method,\n configuration,\n };\n const activateRequest = filterUndefined(activateRequestWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(activateRequest), ctx, log);\n }\n /**\n * Checks if the Adapty SDK is activated.\n *\n * @returns A promise that resolves to `true` if the SDK is activated, `false` otherwise.\n * @throws Error if an error occurs while checking activation status.\n */\n async isActivated() {\n const method = 'is_activated';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Gets the current installation status.\n *\n * @remarks\n * Installation status provides information about when the app was installed,\n * how many times it has been launched, and other installation-related details.\n * The status can be \"not_available\", \"not_determined\", or \"determined\" with details.\n *\n * @returns A promise that resolves with the installation status.\n * @throws Error if an error occurs while retrieving the installation status.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const status = await adapty.getCurrentInstallationStatus();\n * if (status.status === 'determined') {\n * console.log('Install time:', status.details.installTime);\n * console.log('Launch count:', status.details.appLaunchCount);\n * }\n * } catch (error) {\n * console.error('Failed to get installation status:', error);\n * }\n * ```\n */\n async getCurrentInstallationStatus() {\n const method = 'get_current_installation_status';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Fetches the paywall by the specified placement.\n *\n * @remarks\n * With Adapty, you can remotely configure the products and offers in your app\n * by simply adding them to paywalls – no need for hardcoding them.\n * The only thing you hardcode is the placement ID.\n * This flexibility allows you to easily update paywalls, products, and offers,\n * or run A/B tests, all without the need for a new app release.\n *\n * @param options - The options for fetching the paywall\n * @param options.placementId - The identifier of the desired placement. This is the value you specified when creating a placement in the Adapty Dashboard.\n * @param options.locale - Optional. The identifier of the paywall localization. Default: `'en'`. See {@link https://docs.adapty.io/docs/localizations-and-locale-codes | Localizations and locale codes} for more information.\n * @param options.params - Optional. Additional parameters for fetching the paywall, including fetch policy and load timeout.\n * @returns A promise that resolves with the requested {@link AdaptyPaywall}.\n * @throws Error if the paywall with the specified ID is not found or if your bundle ID does not match with your Adapty Dashboard setup.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * });\n * console.log('Paywall fetched successfully');\n * } catch (error) {\n * console.error('Failed to fetch paywall:', error);\n * }\n * ```\n */\n async getPaywall(options) {\n const method = 'get_paywall';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n load_timeout: params.loadTimeoutMs / 1000,\n locale: optionsWithDefault.locale,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: params.fetchPolicy },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Fetches the paywall of the specified placement for the **All Users** audience.\n *\n * @remarks\n * With Adapty, you can remotely configure the products and offers in your app\n * by simply adding them to paywalls – no need for hardcoding them.\n * The only thing you hardcode is the placement ID.\n *\n * However, it's crucial to understand that the recommended approach is to fetch the paywall\n * through the placement ID by the {@link getPaywall} method.\n * The `getPaywallForDefaultAudience` method should be a last resort due to its significant drawbacks:\n * - Potential backward compatibility issues\n * - Loss of targeting (all users see the same paywall)\n *\n * See {@link https://docs.adapty.io/docs/capacitor-get-pb-paywalls#get-a-paywall-for-a-default-audience-to-fetch-it-faster | documentation} for more details.\n *\n * @param options - The options for fetching the paywall\n * @param options.placementId - The identifier of the desired placement.\n * @param options.locale - Optional. The identifier of the paywall localization. Default: `'en'`.\n * @param options.params - Optional. Additional parameters for fetching the paywall.\n * @returns A promise that resolves with the requested {@link AdaptyPaywall}.\n * @throws Error if the paywall with the specified ID is not found.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywallForDefaultAudience({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * });\n * } catch (error) {\n * console.error('Failed to fetch paywall:', error);\n * }\n * ```\n */\n async getPaywallForDefaultAudience(options) {\n var _a;\n const method = 'get_paywall_for_default_audience';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n locale: optionsWithDefault.locale,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: (_a = params.fetchPolicy) !== null && _a !== void 0 ? _a : 'reload_revalidating_cache_data' },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Fetches a list of products associated with a provided paywall.\n *\n * @param options - The options object\n * @param options.paywall - A paywall to fetch products for. You can get it using {@link getPaywall} method.\n * @returns A promise that resolves with a list of {@link AdaptyPaywallProduct} associated with a provided paywall.\n * @throws Error if an error occurs while fetching products.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * const products = await adapty.getPaywallProducts({ paywall });\n * console.log('Products:', products);\n * } catch (error) {\n * console.error('Failed to fetch products:', error);\n * }\n * ```\n */\n async getPaywallProducts(options) {\n const method = 'get_paywall_products';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = new AdaptyPaywallCoder();\n const argsWithUndefined = {\n method,\n paywall: this.encodeWithLogging(paywallCoder, options.paywall, 'AdaptyPaywall', ctx),\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Fetches the onboarding by the specified placement.\n *\n * @remarks\n * When you create an onboarding with the no-code builder, it's stored as a container with configuration\n * that your app needs to fetch and display. This container manages the entire experience - what content appears,\n * how it's presented, and how user interactions are processed.\n *\n * @param options - The options for fetching the onboarding\n * @param options.placementId - The identifier of the desired placement.\n * @param options.locale - Optional. The identifier of the onboarding localization. Default: `'en'`.\n * @param options.params - Optional. Additional parameters for fetching the onboarding.\n * @returns A promise that resolves with the requested {@link AdaptyOnboarding}.\n * @throws Error if the onboarding with the specified ID is not found.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const onboarding = await adapty.getOnboarding({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * params: {\n * fetchPolicy: 'reload_revalidating_cache_data',\n * loadTimeoutMs: 5000\n * }\n * });\n * console.log('Onboarding fetched successfully');\n * } catch (error) {\n * console.error('Failed to fetch onboarding:', error);\n * }\n * ```\n */\n async getOnboarding(options) {\n const method = 'get_onboarding';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n locale: optionsWithDefault.locale,\n load_timeout: params.loadTimeoutMs / 1000,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: params.fetchPolicy },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Fetches the onboarding of the specified placement for the **All Users** audience.\n *\n * @remarks\n * It's crucial to understand that the recommended approach is to fetch the onboarding\n * by the {@link getOnboarding} method. The `getOnboardingForDefaultAudience` method\n * should be used only if faster fetching outweighs the drawbacks:\n * - Potential backward compatibility issues\n * - Loss of personalization (no targeting based on country, attribution, or custom attributes)\n *\n * @param options - The options for fetching the onboarding\n * @param options.placementId - The identifier of the desired placement.\n * @param options.locale - Optional. The identifier of the onboarding localization. Default: `'en'`.\n * @param options.params - Optional. Additional parameters for fetching the onboarding.\n * @returns A promise that resolves with the requested {@link AdaptyOnboarding}.\n * @throws Error if the onboarding with the specified ID is not found.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const onboarding = await adapty.getOnboardingForDefaultAudience({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * });\n * } catch (error) {\n * console.error('Failed to fetch onboarding:', error);\n * }\n * ```\n */\n async getOnboardingForDefaultAudience(options) {\n var _a;\n const method = 'get_onboarding_for_default_audience';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n locale: optionsWithDefault.locale,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: (_a = params.fetchPolicy) !== null && _a !== void 0 ? _a : 'reload_revalidating_cache_data' },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Fetches a user profile.\n *\n * @remarks\n * The getProfile method provides the most up-to-date result\n * as it always tries to query the API.\n * If for some reason (e.g. no internet connection),\n * the Adapty SDK fails to retrieve information from the server,\n * the data from cache will be returned.\n * It is also important to note\n * that the Adapty SDK updates {@link AdaptyProfile} cache\n * on a regular basis, in order\n * to keep this information as up-to-date as possible.\n *\n * @returns A promise that resolves with the user's {@link AdaptyProfile}.\n * @throws Error if an error occurs while fetching the profile.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const profile = await adapty.getProfile();\n * const isSubscribed = profile.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n * if (isSubscribed) {\n * console.log('User has access to premium features');\n * }\n * } catch (error) {\n * console.error('Failed to get profile:', error);\n * }\n * ```\n */\n async getProfile() {\n const method = 'get_profile';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Logs in a user with a provided customerUserId.\n *\n * @remarks\n * If you don't have a user id on SDK initialization,\n * you can set it later at any time with this method.\n * The most common cases are after registration/authorization\n * when the user switches from being an anonymous user to an authenticated user.\n *\n * @param options - The identification options\n * @param options.customerUserId - A unique user identifier.\n * @param options.params - Optional. Additional parameters for identification, including platform-specific settings.\n * @returns A promise that resolves when identification is complete.\n * @throws Error if an error occurs during identification.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.identify({ customerUserId: 'YOUR_USER_ID' });\n * console.log('User identified successfully');\n * } catch (error) {\n * console.error('Failed to identify user:', error);\n * }\n * ```\n */\n async identify(options) {\n const method = 'identify';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const identifyParamsCoder = new AdaptyIdentifyParamsCoder();\n const parameters = identifyParamsCoder.encode(options.params);\n const argsWithUndefined = {\n method,\n customer_user_id: options.customerUserId,\n parameters,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Logs a paywall view event.\n *\n * @remarks\n * Adapty helps you to measure the performance of the paywalls.\n * We automatically collect all the metrics related to purchases except for custom paywall views.\n * This is because only you know when the paywall was shown to a customer.\n *\n * Whenever you show a paywall to your user,\n * call this function to log the event,\n * and it will be accumulated in the paywall metrics.\n *\n * @param options - The options object\n * @param options.paywall - The paywall object that was shown to the user.\n * @returns A promise that resolves when the event is logged.\n * @throws Error if an error occurs while logging the event.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * // ...after opening the paywall\n * await adapty.logShowPaywall({ paywall });\n * ```\n */\n async logShowPaywall(options) {\n const method = 'log_show_paywall';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = new AdaptyPaywallCoder();\n const argsWithUndefined = {\n method,\n paywall: this.encodeWithLogging(paywallCoder, options.paywall, 'AdaptyPaywall', ctx),\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Opens a web paywall in the default browser.\n *\n * @param options - The options object\n * @param options.paywallOrProduct - The paywall or product to open as a web paywall.\n * @returns A promise that resolves when the web paywall is opened.\n * @throws Error if an error occurs while opening the web paywall.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * await adapty.openWebPaywall({ paywallOrProduct: paywall });\n * } catch (error) {\n * console.error('Failed to open web paywall:', error);\n * }\n * ```\n */\n async openWebPaywall(options) {\n const method = 'open_web_paywall';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = new AdaptyPaywallCoder();\n const productCoder = new AdaptyPaywallProductCoder();\n const argsWithUndefined = Object.assign(Object.assign({ method }, (this.isPaywallProduct(options.paywallOrProduct)\n ? { product: this.encodeWithLogging(productCoder, options.paywallOrProduct, 'AdaptyPaywallProduct', ctx) }\n : { paywall: this.encodeWithLogging(paywallCoder, options.paywallOrProduct, 'AdaptyPaywall', ctx) })), (options.openIn ? { open_in: options.openIn } : {}));\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Creates a URL for a web paywall.\n *\n * @remarks\n * This method generates a URL that can be used to open a web version of the paywall.\n * You can use this URL in a custom web view or a browser.\n *\n * @param options - The options object\n * @param options.paywallOrProduct - The paywall or product to create a URL for.\n * @returns A promise that resolves with the web paywall URL.\n * @throws Error if an error occurs while creating the URL.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * const url = await adapty.createWebPaywallUrl({ paywallOrProduct: paywall });\n * console.log('Web paywall URL:', url);\n * } catch (error) {\n * console.error('Failed to create web paywall URL:', error);\n * }\n * ```\n */\n async createWebPaywallUrl(options) {\n const method = 'create_web_paywall_url';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = new AdaptyPaywallCoder();\n const productCoder = new AdaptyPaywallProductCoder();\n const argsWithUndefined = Object.assign({ method }, (this.isPaywallProduct(options.paywallOrProduct)\n ? { product: this.encodeWithLogging(productCoder, options.paywallOrProduct, 'AdaptyPaywallProduct', ctx) }\n : { paywall: this.encodeWithLogging(paywallCoder, options.paywallOrProduct, 'AdaptyPaywall', ctx) }));\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Logs out the current user.\n *\n * @remarks\n * You can then login the user using {@link identify} method.\n *\n * @returns A promise that resolves when the user is logged out.\n * @throws Error if an error occurs during logout.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.logout();\n * console.log('User logged out successfully');\n * } catch (error) {\n * console.error('Failed to logout user:', error);\n * }\n * ```\n */\n async logout() {\n const method = 'logout';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Performs a purchase of the specified product.\n *\n * @remarks\n * In paywalls built with Paywall Builder, purchases are processed automatically with no additional code.\n *\n * @param options - The purchase options\n * @param options.product - The product to be purchased. You can get it using {@link getPaywallProducts} method.\n * @param options.params - Optional. Additional parameters for the purchase, including Android subscription update params.\n * @returns A promise that resolves with the {@link AdaptyPurchaseResult} object containing details about the purchase.\n * If the result is `'success'`, it also includes the updated user's profile.\n * @throws Error if an error occurs during the purchase process.\n *\n * @example\n * Basic purchase\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const result = await adapty.makePurchase({ product });\n *\n * if (result.type === 'success') {\n * const isSubscribed = result.profile?.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n * if (isSubscribed) {\n * console.log('User is now subscribed!');\n * }\n * }\n * } catch (error) {\n * console.error('Purchase failed:', error);\n * }\n * ```\n */\n async makePurchase(options) {\n var _a;\n const method = 'make_purchase';\n const params = (_a = options.params) !== null && _a !== void 0 ? _a : {};\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const productCoder = new AdaptyPaywallProductCoder();\n const purchaseParamsCoder = new AdaptyPurchaseParamsCoder();\n const encodedProduct = this.encodeWithLogging(productCoder, options.product, 'AdaptyPaywallProduct', ctx);\n const productInput = productCoder.getInput(encodedProduct);\n const purchaseParams = this.encodeWithLogging(purchaseParamsCoder, params, 'AdaptyPurchaseParams', ctx);\n const argsWithUndefined = {\n method,\n product: productInput,\n parameters: purchaseParams,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Opens a native modal screen to redeem Apple Offer Codes.\n *\n * @remarks\n * iOS 14+ only. Since iOS 14.0, your users can redeem Offer Codes.\n * To enable users to redeem offer codes, you can display the offer code redemption sheet.\n *\n * @returns A promise that resolves when the redemption sheet is presented.\n * @throws Error if an error occurs or if called on Android.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.presentCodeRedemptionSheet();\n * } catch (error) {\n * console.error('Failed to present code redemption sheet:', error);\n * }\n * ```\n */\n async presentCodeRedemptionSheet() {\n const method = 'present_code_redemption_sheet';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets the variation ID of the purchase.\n *\n * @remarks\n * In Observer mode, Adapty SDK doesn't know where the purchase was made from.\n * you can manually assign variation to the purchase.\n * After doing this, you'll be able to see metrics in Adapty Dashboard.\n *\n * @param options - The options object\n * @param options.transactionId - The transaction ID of the purchase.\n * @param options.variationId - Optional. The variation ID from the {@link AdaptyPaywall}.\n * @returns A promise that resolves when the transaction is reported.\n * @throws Error if an error occurs while reporting the transaction.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.reportTransaction({\n * transactionId: 'transaction_123',\n * variationId: 'variation_456'\n * });\n * } catch (error) {\n * console.error('Failed to report transaction:', error);\n * }\n * ```\n */\n async reportTransaction(options) {\n const method = 'report_transaction';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n transaction_id: options.transactionId,\n variation_id: options.variationId,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Restores user purchases and updates the profile.\n *\n * @remarks\n * Restoring purchases allows users to regain access to previously purchased content,\n * such as subscriptions or in-app purchases, without being charged again.\n * This feature is especially useful for users who may have uninstalled and reinstalled the app\n * or switched to a new device.\n *\n * In paywalls built with Paywall Builder, purchases are restored automatically without additional code from you.\n *\n * @returns A promise that resolves with the updated user's {@link AdaptyProfile}.\n * @throws Error if an error occurs during the restore process.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const profile = await adapty.restorePurchases();\n * const isSubscribed = profile.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n *\n * if (isSubscribed) {\n * console.log('Access restored successfully!');\n * } else {\n * console.log('No active subscriptions found');\n * }\n * } catch (error) {\n * console.error('Failed to restore purchases:', error);\n * }\n * ```\n */\n async restorePurchases() {\n const method = 'restore_purchases';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets the fallback paywalls.\n *\n * @remarks\n * Fallback file will be used if the SDK fails\n * to fetch the paywalls from the dashboard.\n * It is not designed to be used for the offline flow,\n * as products are not cached in Adapty.\n *\n * @param options - The options object\n * @param options.fileLocation - The location of the fallback file for each platform.\n * @returns A promise that resolves when fallback placements are saved.\n * @throws Error if an error occurs while setting the fallback.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.setFallback({\n * fileLocation: {\n * ios: { fileName: 'fallback_paywalls.json' },\n * android: { relativeAssetPath: 'fallback_paywalls.json' }\n * }\n * });\n * } catch (error) {\n * console.error('Failed to set fallback:', error);\n * }\n * ```\n */\n async setFallback(options) {\n const method = 'set_fallback';\n const platform = Capacitor.getPlatform();\n let fileLocationString;\n if (platform === 'ios') {\n fileLocationString = options.fileLocation.ios.fileName;\n }\n else if (platform === 'android') {\n // Add suffixes to distinguish resource types on Android\n if ('relativeAssetPath' in options.fileLocation.android) {\n fileLocationString = `${options.fileLocation.android.relativeAssetPath}a`;\n }\n else {\n fileLocationString = `${options.fileLocation.android.rawResName}r`;\n }\n }\n else {\n fileLocationString = '';\n }\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ platform, fileLocationString }));\n const argsWithUndefined = {\n method,\n asset_id: fileLocationString,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets an integration identifier for the current user.\n *\n * @remarks\n * Integration identifiers can be used to link Adapty profiles to external systems\n * and track users across different platforms.\n *\n * @param options - The options object\n * @param options.key - The key of the integration identifier.\n * @param options.value - The value of the integration identifier.\n * @returns A promise that resolves when the integration identifier is set.\n * @throws Error if an error occurs while setting the identifier.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.setIntegrationIdentifier({\n * key: 'firebase_app_instance_id',\n * value: 'YOUR_FIREBASE_ID'\n * });\n * } catch (error) {\n * console.error('Failed to set integration identifier:', error);\n * }\n * ```\n */\n async setIntegrationIdentifier(options) {\n const method = 'set_integration_identifiers';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n key_values: { [options.key]: options.value },\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets the preferred log level and/or custom logger configuration.\n *\n * @remarks\n * By default, the log level is set to `error`.\n *\n * There are four levels available:\n * - `error`: only errors will be logged\n * - `warn`: messages from the SDK that do not cause critical errors, but are worth paying attention to\n * - `info`: various information messages, such as those that log the lifecycle of various modules\n * - `verbose`: any additional information that may be useful during debugging, such as function calls, API queries, etc.\n *\n * @param options - The options object\n * @param options.logLevel - Optional. The new preferred log level.\n * @param options.logger - Optional. Custom logger configuration.\n * @returns A promise that resolves when the log level is set.\n * @throws Error if the log level is invalid.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * // Set log level\n * await adapty.setLogLevel({ logLevel: 'verbose' });\n *\n * // Or set custom logger\n * await adapty.setLogLevel({\n * logger: {\n * handler: (level, scope, message, data) => {\n * sendLogToYourServer(`[${level}] ${message}`, data);\n * }\n * }\n * });\n * ```\n */\n async setLogLevel(options) {\n const method = 'set_log_level';\n if (options.logger) {\n Log.configure(options.logger);\n }\n if (options.logLevel !== undefined) {\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options: { logLevel: options.logLevel } }));\n // Update log level immediately\n Log.logLevel = options.logLevel;\n const argsWithUndefined = {\n method,\n value: options.logLevel,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n }\n /**\n * Updates attribution data for the current user.\n *\n * @remarks\n * Attribution data can be used to track marketing campaigns and user acquisition sources.\n *\n * @param options - The options object\n * @param options.attribution - An object containing attribution data.\n * @param options.source - The source of the attribution data (e.g., 'adjust', 'appsflyer').\n * @returns A promise that resolves when the attribution data is updated.\n * @throws Error if parameters are invalid or not provided.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const attribution = {\n * 'Adjust Adid': 'adjust_adid',\n * 'Adjust Network': 'adjust_network',\n * 'Adjust Campaign': 'adjust_campaign',\n * 'Adjust Adgroup': 'adjust_adgroup',\n * };\n *\n * await adapty.updateAttribution({ attribution, source: 'adjust' });\n * } catch (error) {\n * console.error('Failed to update attribution:', error);\n * }\n * ```\n */\n async updateAttribution(options) {\n const method = 'update_attribution_data';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n attribution: JSON.stringify(options.attribution),\n source: options.source,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Updates the user's consent for collecting refund data.\n *\n * @remarks\n * iOS only. This method has no effect on Android.\n * Use this method to update whether the SDK should collect refund data for the user.\n *\n * @param options - The options object\n * @param options.consent - Whether to collect refund data.\n * @returns A promise that resolves when the consent is updated (or immediately on Android).\n * @throws Error if an error occurs on iOS.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.updateCollectingRefundDataConsent({ consent: true });\n * } catch (error) {\n * console.error('Failed to update consent:', error);\n * }\n * ```\n */\n async updateCollectingRefundDataConsent(options) {\n const platform = Capacitor.getPlatform();\n if (platform === 'android') {\n return Promise.resolve();\n }\n const method = 'update_collecting_refund_data_consent';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n consent: options.consent,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Updates the user's refund preference.\n *\n * @remarks\n * iOS only. This method has no effect on Android.\n * Use this method to set the user's preference for handling refunds.\n *\n * @param options - The options object\n * @param options.refundPreference - The refund preference setting.\n * @returns A promise that resolves when the preference is updated (or immediately on Android).\n * @throws Error if an error occurs on iOS.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.updateRefundPreference({ refundPreference: 'ask_to_cancel' });\n * } catch (error) {\n * console.error('Failed to update refund preference:', error);\n * }\n * ```\n */\n async updateRefundPreference(options) {\n const platform = Capacitor.getPlatform();\n if (platform === 'android') {\n return Promise.resolve();\n }\n const method = 'update_refund_preference';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n refund_preference: options.refundPreference,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Updates a profile for the current user.\n *\n * @remarks\n * You can set optional attributes such as email, phone number, etc. to the user of your app.\n * You can then use attributes to create user segments or just view them in CRM.\n *\n * The attributes that you've previously set won't be reset.\n * Custom attributes can be removed by passing `null` as their values.\n *\n * @param options - An object of parameters to update. Partial {@link AdaptyProfileParameters}.\n * @returns A promise that resolves when the profile is updated.\n * @throws Error if parameters are invalid or there is a network error.\n *\n * @example\n * Basic profile update\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.updateProfile({\n * email: 'email@email.com',\n * phoneNumber: '+18888888888',\n * firstName: 'John',\n * lastName: 'Appleseed',\n * gender: 'other',\n * birthday: new Date().toISOString(),\n * });\n * console.log('Profile updated successfully');\n * } catch (error) {\n * console.error('Failed to update profile:', error);\n * }\n * ```\n *\n * @example\n * Custom attributes\n * ```typescript\n * await adapty.updateProfile({\n * codableCustomAttributes: {\n * key_1: 'value_1',\n * key_2: 2,\n * },\n * });\n *\n * // To remove keys, pass null as their values\n * await adapty.updateProfile({\n * codableCustomAttributes: {\n * key_1: null,\n * },\n * });\n * ```\n */\n async updateProfile(options) {\n const method = 'update_profile';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const profileParametersCoder = new AdaptyProfileParametersCoder();\n const argsWithUndefined = {\n method,\n params: this.encodeWithLogging(profileParametersCoder, options, 'AdaptyProfileParameters', ctx),\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Removes all attached event listeners.\n *\n * @remarks\n * This method removes all event listeners that were added via {@link addListener}.\n * It's recommended to call this method when cleaning up resources,\n * such as when unmounting a component.\n *\n * @returns A promise that resolves when all listeners are removed.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * // Remove all listeners\n * await adapty.removeAllListeners();\n * ```\n */\n async removeAllListeners() {\n await this.emitter.removeAllListeners();\n }\n}\n//# sourceMappingURL=adapty.js.map","export const VendorStore = Object.freeze({\n AppStore: 'app_store',\n PlayStore: 'play_store',\n Adapty: 'adapty',\n});\nexport const OfferType = Object.freeze({\n FreeTrial: 'free_trial',\n PayAsYouGo: 'pay_as_you_go',\n PayUpFront: 'pay_up_front',\n});\nexport const CancellationReason = Object.freeze({\n VolountarilyCancelled: 'voluntarily_cancelled',\n BillingError: 'billing_error',\n Refund: 'refund',\n PriceIncrease: 'price_increase',\n ProductWasNotAvailable: 'product_was_not_available',\n Unknown: 'unknown',\n});\nexport const Gender = Object.freeze({\n Female: 'f',\n Male: 'm',\n Other: 'o',\n});\nexport const AppTrackingTransparencyStatus = Object.freeze({\n NotDetermined: 0,\n Restricted: 1,\n Denied: 2,\n Authorized: 3,\n Unknown: 4,\n});\nexport const ProductPeriod = Object.freeze({\n Day: 'day',\n Week: 'week',\n Month: 'month',\n Year: 'year',\n});\n//# sourceMappingURL=constants.js.map","export const PaywallEventId = {\n DidAppear: 'paywall_view_did_appear',\n DidDisappear: 'paywall_view_did_disappear',\n DidPerformAction: 'paywall_view_did_perform_action',\n DidSelectProduct: 'paywall_view_did_select_product',\n DidStartPurchase: 'paywall_view_did_start_purchase',\n DidFinishPurchase: 'paywall_view_did_finish_purchase',\n DidFailPurchase: 'paywall_view_did_fail_purchase',\n DidStartRestore: 'paywall_view_did_start_restore',\n DidFinishRestore: 'paywall_view_did_finish_restore',\n DidFailRestore: 'paywall_view_did_fail_restore',\n DidFailRendering: 'paywall_view_did_fail_rendering',\n DidFailLoadingProducts: 'paywall_view_did_fail_loading_products',\n DidFinishWebPaymentNavigation: 'paywall_view_did_finish_web_payment_navigation',\n};\n//# sourceMappingURL=paywall-events.js.map","export * from './error';\nexport * from './inputs';\nexport * from '../constants';\nexport * from './paywall-events';\nexport const WebPresentation = Object.freeze({\n BrowserOutApp: 'browser_out_app',\n BrowserInApp: 'browser_in_app',\n});\nexport const RefundPreference = Object.freeze({\n NoPreference: 'no_preference',\n Grant: 'grant',\n Decline: 'decline',\n});\n//# sourceMappingURL=index.js.map","export const formatDateUTC = (date) => {\n const pad = (num, digits = 2) => {\n const str = num.toString();\n const paddingLength = digits - str.length;\n return paddingLength > 0 ? '0'.repeat(paddingLength) + str : str;\n };\n const year = date.getUTCFullYear();\n const month = pad(date.getUTCMonth() + 1);\n const day = pad(date.getUTCDate());\n const hours = pad(date.getUTCHours());\n const minutes = pad(date.getUTCMinutes());\n const seconds = pad(date.getUTCSeconds());\n const millis = pad(date.getUTCMilliseconds(), 3);\n return `${year}-${month}-${day}T${hours}:${minutes}:${seconds}.${millis}Z`;\n};\nexport const colorToHex = {\n fromARGB(value) {\n const hex = value.toString(16).padStart(8, '0');\n return `#${hex.slice(2)}${hex.slice(0, 2)}`;\n },\n fromRGBA(value) {\n return `#${value.toString(16).padStart(8, '0')}`;\n },\n fromRGB(value) {\n return `#${value.toString(16).padStart(6, '0')}ff`;\n },\n};\nexport const extractBase64Data = (input) => {\n const commaIndex = input.indexOf(',');\n if (input.startsWith('data:') && commaIndex !== -1) {\n return input.slice(commaIndex + 1);\n }\n return input;\n};\nexport const resolveAssetId = (asset, select) => {\n if ('relativeAssetPath' in asset) {\n return (select({\n ios: asset.relativeAssetPath,\n android: `${asset.relativeAssetPath}a`,\n }) || '');\n }\n const fileLocation = asset.fileLocation;\n return (select({\n ios: fileLocation.ios.fileName,\n android: 'relativeAssetPath' in fileLocation.android\n ? `${fileLocation.android.relativeAssetPath}a`\n : `${fileLocation.android.rawResName}r`,\n }) || '');\n};\n//# sourceMappingURL=utils.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { Capacitor } from '@capacitor/core';\nimport { AdaptyPurchaseParamsCoder } from './adapty-purchase-params';\nimport { colorToHex, extractBase64Data, formatDateUTC, resolveAssetId, } from './utils';\nexport class AdaptyUICreatePaywallViewParamsCoder {\n encode(data) {\n const result = {};\n if (data.prefetchProducts !== undefined) {\n result.preload_products = data.prefetchProducts;\n }\n if (data.loadTimeoutMs !== undefined) {\n result.load_timeout = data.loadTimeoutMs / 1000;\n }\n if (data.customTags) {\n result.custom_tags = data.customTags;\n }\n if (data.customTimers) {\n result.custom_timers = this.encodeCustomTimers(data.customTimers);\n }\n if (data.customAssets) {\n result.custom_assets = this.encodeCustomAssets(data.customAssets);\n }\n if (data.productPurchaseParams) {\n result.product_purchase_parameters = this.encodeProductPurchaseParams(data.productPurchaseParams);\n }\n return result;\n }\n encodeCustomTimers(timers) {\n const result = {};\n for (const key in timers) {\n if (Object.prototype.hasOwnProperty.call(timers, key)) {\n const date = timers[key];\n if (date instanceof Date) {\n result[key] = formatDateUTC(date);\n }\n }\n }\n return result;\n }\n encodeCustomAssets(assets) {\n const getAssetId = (asset) => {\n return resolveAssetId(asset, selectPlatformValue) || '';\n };\n return Object.entries(assets)\n .map(([id, asset]) => {\n switch (asset.type) {\n case 'image':\n return 'base64' in asset\n ? {\n id,\n type: 'image',\n value: extractBase64Data(asset.base64),\n }\n : {\n id,\n type: 'image',\n asset_id: getAssetId(asset),\n };\n case 'video':\n return {\n id,\n type: 'video',\n asset_id: getAssetId(asset),\n };\n case 'color': {\n const color = encodeColor(asset);\n if (!color)\n return undefined;\n return {\n id,\n type: 'color',\n value: color,\n };\n }\n case 'linear-gradient': {\n const { values, points = {} } = asset;\n const { x0 = 0, y0 = 0, x1 = 1, y1 = 0 } = points;\n const colorStops = values\n .map((_a) => {\n var { p } = _a, colorInput = __rest(_a, [\"p\"]);\n const color = encodeColor(colorInput);\n if (!color)\n return undefined;\n return { color, p };\n })\n .filter((v) => v !== undefined);\n if (colorStops.length !== values.length)\n return undefined;\n return {\n id,\n type: 'linear-gradient',\n values: colorStops,\n points: { x0, y0, x1, y1 },\n };\n }\n default:\n return undefined;\n }\n })\n .filter((item) => item !== undefined);\n }\n encodeProductPurchaseParams(params) {\n if (!params)\n return {};\n const purchaseParamsCoder = new AdaptyPurchaseParamsCoder();\n return Object.fromEntries(params.map(({ productId, params: purchaseParams }) => [\n productId.adaptyProductId,\n purchaseParamsCoder.encode(purchaseParams),\n ]));\n }\n}\nconst selectPlatformValue = (spec) => {\n const platform = Capacitor.getPlatform();\n if (platform === 'ios')\n return spec.ios;\n if (platform === 'android')\n return spec.android;\n return undefined;\n};\nconst encodeColor = (asset) => {\n if ('argb' in asset) {\n return colorToHex.fromARGB(asset.argb);\n }\n if ('rgba' in asset) {\n return colorToHex.fromRGBA(asset.rgba);\n }\n if ('rgb' in asset) {\n return colorToHex.fromRGB(asset.rgb);\n }\n return undefined;\n};\n//# sourceMappingURL=adapty-ui-create-paywall-view-params.js.map","/**\n * Maps over values of an object, transforming each value using the provided function.\n *\n * @param obj - The object to map over\n * @param fn - Function to transform each value\n * @returns New object with transformed values\n */\nexport function mapValues(obj, fn) {\n return Object.fromEntries(Object.entries(obj).map(([key, value]) => [key, fn(value, key)]));\n}\n//# sourceMappingURL=map-values.js.map","import { AdaptyError } from '../adapty-error';\nimport { AdaptyNativeErrorCoder } from './adapty-native-error';\nimport { AdaptyPaywallProductCoder } from './adapty-paywall-product';\nimport { AdaptyProfileCoder } from './adapty-profile';\nimport { AdaptyPurchaseResultCoder } from './adapty-purchase-result';\nimport { PaywallEventId, } from '../types/paywall-events';\nexport { PaywallEventId, };\nexport function parsePaywallEvent(input, ctx) {\n var _a;\n let obj;\n try {\n obj = JSON.parse(input);\n }\n catch (error) {\n throw AdaptyError.failedToDecode(`Failed to decode event: ${error === null || error === void 0 ? void 0 : error.message}`);\n }\n const eventId = obj['id'];\n if (!(eventId === null || eventId === void 0 ? void 0 : eventId.startsWith('paywall_view_'))) {\n return null;\n }\n const viewObj = obj['view'];\n const view = {\n id: viewObj['id'],\n placementId: viewObj['placement_id'],\n variationId: viewObj['variation_id'],\n };\n switch (eventId) {\n case PaywallEventId.DidAppear:\n return { id: eventId, view };\n case PaywallEventId.DidDisappear:\n return { id: eventId, view };\n case PaywallEventId.DidPerformAction: {\n const actionObj = obj['action'];\n return {\n id: eventId,\n view,\n action: {\n type: actionObj['type'],\n value: actionObj['value'],\n },\n };\n }\n case PaywallEventId.DidSelectProduct:\n return {\n id: eventId,\n view,\n productId: (_a = obj['product_id']) !== null && _a !== void 0 ? _a : '',\n };\n case PaywallEventId.DidStartPurchase:\n return {\n id: eventId,\n view,\n product: getPaywallCoder('product', ctx).decode(obj['product']),\n };\n case PaywallEventId.DidFinishPurchase:\n return {\n id: eventId,\n view,\n purchaseResult: getPaywallCoder('purchaseResult', ctx).decode(obj['purchased_result']),\n product: getPaywallCoder('product', ctx).decode(obj['product']),\n };\n case PaywallEventId.DidFailPurchase: {\n const errorCoder = getPaywallCoder('error', ctx);\n const decodedError = errorCoder.decode(obj['error']);\n return {\n id: eventId,\n view,\n error: errorCoder.getError(decodedError),\n product: getPaywallCoder('product', ctx).decode(obj['product']),\n };\n }\n case PaywallEventId.DidStartRestore:\n return {\n id: eventId,\n view,\n };\n case PaywallEventId.DidFinishRestore:\n return {\n id: eventId,\n view,\n profile: getPaywallCoder('profile', ctx).decode(obj['profile']),\n };\n case PaywallEventId.DidFailRestore: {\n const errorCoder = getPaywallCoder('error', ctx);\n const decodedError = errorCoder.decode(obj['error']);\n return {\n id: eventId,\n view,\n error: errorCoder.getError(decodedError),\n };\n }\n case PaywallEventId.DidFailRendering: {\n const errorCoder = getPaywallCoder('error', ctx);\n const decodedError = errorCoder.decode(obj['error']);\n return {\n id: eventId,\n view,\n error: errorCoder.getError(decodedError),\n };\n }\n case PaywallEventId.DidFailLoadingProducts: {\n const errorCoder = getPaywallCoder('error', ctx);\n const decodedError = errorCoder.decode(obj['error']);\n return {\n id: eventId,\n view,\n error: errorCoder.getError(decodedError),\n };\n }\n case PaywallEventId.DidFinishWebPaymentNavigation:\n return {\n id: eventId,\n view,\n product: obj['product']\n ? getPaywallCoder('product', ctx).decode(obj['product'])\n : undefined,\n error: obj['error']\n ? (() => {\n const errorCoder = getPaywallCoder('error', ctx);\n const decodedError = errorCoder.decode(obj['error']);\n return errorCoder.getError(decodedError);\n })()\n : undefined,\n };\n default:\n return null;\n }\n}\nfunction getPaywallCoder(type, _ctx) {\n switch (type) {\n case 'product':\n return new AdaptyPaywallProductCoder();\n case 'profile':\n return new AdaptyProfileCoder();\n case 'purchaseResult':\n return new AdaptyPurchaseResultCoder();\n case 'error':\n return new AdaptyNativeErrorCoder();\n }\n}\n//# sourceMappingURL=parse-paywall.js.map","import { AdaptyCapacitorPlugin } from '../bridge/plugin';\nimport { LogContext } from '../shared/logger';\n/**\n * Base class for view event emitters that manages common event handling logic.\n * Each event type can have only one handler - new handlers replace existing ones.\n */\nexport class BaseViewEmitter {\n constructor(viewId) {\n this.eventListeners = new Map();\n this.handlers = new Map();\n this.internalHandlers = new Map();\n this.viewId = viewId;\n }\n async addListener(event, callback, onRequestClose) {\n const nativeEvent = this.getNativeEventForHandler(event);\n if (!nativeEvent) {\n throw new Error(`No native event mapping found for handler: ${String(event)}`);\n }\n // Replace existing handler for this event type\n this.handlers.set(event, {\n handler: callback,\n onRequestClose,\n });\n return await this.getOrCreateNativeListener(nativeEvent);\n }\n async addInternalListener(event, callback) {\n const nativeEvent = this.getNativeEventForHandler(event);\n if (!nativeEvent) {\n throw new Error(`No native event mapping found for handler: ${String(event)}`);\n }\n this.internalHandlers.set(event, { handler: callback });\n return await this.getOrCreateNativeListener(nativeEvent);\n }\n removeAllListeners() {\n this.eventListeners.forEach((subscription) => {\n subscription.remove().catch(() => {\n // intentionally ignore errors during cleanup\n });\n });\n this.eventListeners.clear();\n this.handlers.clear();\n this.internalHandlers.clear();\n }\n async createNativeListener(nativeEvent) {\n const emitterName = this.getEmitterName();\n const viewId = this.viewId;\n const subscription = await AdaptyCapacitorPlugin.addListener(nativeEvent, (arg) => {\n const ctx = new LogContext();\n const log = ctx.event({ methodName: nativeEvent });\n log.start(() => ({ raw: arg }));\n // Strict validation: events must come in {data: \"json_string\"} format\n if (!arg || typeof arg !== 'object' || !arg.data) {\n const error = new Error(`[${emitterName}] Invalid event format received. Expected {data: \"json_string\"}, got: ${JSON.stringify(arg)}`);\n log.failed(() => ({ error }));\n throw error;\n }\n const rawEventData = arg.data;\n // Parse JSON string using specific parser with decode logging\n let eventData;\n if (typeof rawEventData === 'string') {\n try {\n eventData = this.parseEventData(rawEventData, ctx);\n }\n catch (error) {\n log.failed(() => ({ error }));\n throw error;\n }\n }\n else {\n const err = new Error(`[${emitterName}] Expected event data to be JSON string, got ${typeof rawEventData}: ${rawEventData}`);\n log.failed(() => ({ error: err }));\n throw err;\n }\n const eventViewId = this.getEventViewId(eventData);\n if (viewId !== eventViewId) {\n return;\n }\n const handlerName = this.getHandlerForNativeEvent(nativeEvent, eventData);\n if (!handlerName) {\n return;\n }\n // 1. Client handler (single)\n const handlerData = this.handlers.get(handlerName);\n if (handlerData) {\n const { handler, onRequestClose } = handlerData;\n const callbackArgs = this.extractCallbackArgs(handlerName, eventData);\n const cb = handler;\n try {\n const shouldClose = cb(...callbackArgs);\n if (shouldClose) {\n onRequestClose().catch((error) => {\n log.failed(() => ({ error, handlerName }));\n });\n }\n log.success(() => ({ message: 'Event handled successfully', handlerName }));\n }\n catch (error) {\n log.failed(() => ({ error, handlerName }));\n }\n }\n // 2. Internal handler\n const internalHandlerData = this.internalHandlers.get(handlerName);\n if (internalHandlerData) {\n try {\n internalHandlerData.handler(eventData);\n }\n catch (error) {\n log.failed(() => ({ error, handlerName: `internal:${String(handlerName)}` }));\n }\n }\n });\n this.eventListeners.set(nativeEvent, subscription);\n return subscription;\n }\n async getOrCreateNativeListener(nativeEvent) {\n const existing = this.eventListeners.get(nativeEvent);\n if (existing) {\n return existing;\n }\n const created = await this.createNativeListener(nativeEvent);\n if (!created) {\n throw new Error(`Failed to register listener for ${nativeEvent}`);\n }\n return created;\n }\n}\n//# sourceMappingURL=base-view-emitter.js.map","import { parsePaywallEvent } from '../shared/coders/parse-paywall';\nimport { PaywallEventId } from '../shared/types/paywall-events';\nimport { BaseViewEmitter } from './base-view-emitter';\n/**\n * PaywallViewEmitter manages event handlers for paywall view events.\n * Each event type can have only one handler - new handlers replace existing ones.\n */\nexport class PaywallViewEmitter extends BaseViewEmitter {\n parseEventData(rawEventData, ctx) {\n const result = parsePaywallEvent(rawEventData, ctx);\n if (!result) {\n throw new Error('Failed to parse paywall event');\n }\n return result;\n }\n getNativeEventForHandler(event) {\n return HANDLER_TO_NATIVE_EVENT[event];\n }\n getHandlerForNativeEvent(nativeEvent, eventData) {\n const resolver = NATIVE_EVENT_RESOLVER[nativeEvent];\n if (!resolver) {\n return null;\n }\n return resolver(eventData);\n }\n extractCallbackArgs(handlerName, eventData) {\n return extractCallbackArgs(handlerName, eventData);\n }\n getEventViewId(eventData) {\n var _a, _b;\n return (_b = (_a = eventData === null || eventData === void 0 ? void 0 : eventData.view) === null || _a === void 0 ? void 0 : _a.id) !== null && _b !== void 0 ? _b : null;\n }\n getEmitterName() {\n return 'PaywallViewEmitter';\n }\n}\nconst NATIVE_EVENT_RESOLVER = {\n [PaywallEventId.DidPerformAction]: (event) => {\n var _a;\n if (event.id !== PaywallEventId.DidPerformAction) {\n return null;\n }\n const actionMap = {\n close: 'onCloseButtonPress',\n system_back: 'onAndroidSystemBack',\n open_url: 'onUrlPress',\n custom: 'onCustomAction',\n };\n return (_a = actionMap[event.action.type]) !== null && _a !== void 0 ? _a : null;\n },\n [PaywallEventId.DidAppear]: () => 'onAppeared',\n [PaywallEventId.DidDisappear]: () => 'onDisappeared',\n [PaywallEventId.DidSelectProduct]: () => 'onProductSelected',\n [PaywallEventId.DidStartPurchase]: () => 'onPurchaseStarted',\n [PaywallEventId.DidFinishPurchase]: () => 'onPurchaseCompleted',\n [PaywallEventId.DidFailPurchase]: () => 'onPurchaseFailed',\n [PaywallEventId.DidStartRestore]: () => 'onRestoreStarted',\n [PaywallEventId.DidFinishRestore]: () => 'onRestoreCompleted',\n [PaywallEventId.DidFailRestore]: () => 'onRestoreFailed',\n [PaywallEventId.DidFailRendering]: () => 'onRenderingFailed',\n [PaywallEventId.DidFailLoadingProducts]: () => 'onLoadingProductsFailed',\n [PaywallEventId.DidFinishWebPaymentNavigation]: () => 'onWebPaymentNavigationFinished',\n};\nconst HANDLER_TO_NATIVE_EVENT = {\n onCloseButtonPress: PaywallEventId.DidPerformAction,\n onAndroidSystemBack: PaywallEventId.DidPerformAction,\n onUrlPress: PaywallEventId.DidPerformAction,\n onCustomAction: PaywallEventId.DidPerformAction,\n onProductSelected: PaywallEventId.DidSelectProduct,\n onPurchaseStarted: PaywallEventId.DidStartPurchase,\n onPurchaseCompleted: PaywallEventId.DidFinishPurchase,\n onPurchaseFailed: PaywallEventId.DidFailPurchase,\n onRestoreStarted: PaywallEventId.DidStartRestore,\n onRestoreCompleted: PaywallEventId.DidFinishRestore,\n onRestoreFailed: PaywallEventId.DidFailRestore,\n onAppeared: PaywallEventId.DidAppear,\n onDisappeared: PaywallEventId.DidDisappear,\n onRenderingFailed: PaywallEventId.DidFailRendering,\n onLoadingProductsFailed: PaywallEventId.DidFailLoadingProducts,\n onWebPaymentNavigationFinished: PaywallEventId.DidFinishWebPaymentNavigation,\n};\nfunction extractCallbackArgs(handlerName, event) {\n var _a;\n switch (event.id) {\n case PaywallEventId.DidSelectProduct:\n return [event.productId];\n case PaywallEventId.DidStartPurchase:\n return [event.product];\n case PaywallEventId.DidFinishPurchase:\n return [event.purchaseResult, event.product];\n case PaywallEventId.DidFailPurchase:\n return [event.error, event.product];\n case PaywallEventId.DidFinishRestore:\n return [event.profile];\n case PaywallEventId.DidFailRestore:\n case PaywallEventId.DidFailRendering:\n case PaywallEventId.DidFailLoadingProducts:\n return [event.error];\n case PaywallEventId.DidPerformAction:\n if (handlerName === 'onUrlPress' || handlerName === 'onCustomAction') {\n return [(_a = event.action.value) !== null && _a !== void 0 ? _a : ''];\n }\n return [];\n case PaywallEventId.DidFinishWebPaymentNavigation:\n return [event.product, event.error];\n case PaywallEventId.DidAppear:\n case PaywallEventId.DidDisappear:\n case PaywallEventId.DidStartRestore:\n return [];\n }\n}\n//# sourceMappingURL=paywall-view-emitter.js.map","import { Log } from '../shared/logger';\n/**\n * Default event handlers that provide standard closing behavior\n */\nexport const DEFAULT_EVENT_HANDLERS = {\n onCloseButtonPress: () => true,\n onAndroidSystemBack: () => true,\n onUrlPress: (url) => {\n if (typeof window !== 'undefined') {\n try {\n window.open(new URL(url), '_blank');\n }\n catch (_a) {\n Log.warn('onUrlPress', () => `Invalid URL: ${url}`);\n }\n }\n return false;\n },\n onCustomAction: () => false,\n onProductSelected: () => false,\n onPurchaseStarted: () => false,\n onPurchaseCompleted: (purchaseResult) => (purchaseResult === null || purchaseResult === void 0 ? void 0 : purchaseResult.type) !== 'user_cancelled',\n onPurchaseFailed: () => false,\n onRestoreStarted: () => false,\n onRestoreCompleted: () => true,\n onRestoreFailed: () => false,\n onAppeared: () => false,\n onDisappeared: () => false,\n onRenderingFailed: () => true,\n onLoadingProductsFailed: () => false,\n onWebPaymentNavigationFinished: () => false,\n};\nexport const AdaptyUiDialogActionType = Object.freeze({\n primary: 'primary',\n secondary: 'secondary',\n});\nexport const DEFAULT_ONBOARDING_EVENT_HANDLERS = {\n onClose: () => true,\n};\n//# sourceMappingURL=types.js.map","import { AdaptyError } from '../shared/adapty-error';\nimport { AdaptyPaywallCoder } from '../shared/coders/adapty-paywall';\nimport { AdaptyUICreatePaywallViewParamsCoder } from '../shared/coders/adapty-ui-create-paywall-view-params';\nimport { LogContext, Log } from '../shared/logger';\nimport { mapValues } from '../shared/utils/map-values';\nimport { withErrorContext } from '../shared/utils/with-error-context';\nimport { PaywallViewEmitter } from './paywall-view-emitter';\nimport { DEFAULT_EVENT_HANDLERS } from './types';\nconst DEFAULT_PARAMS = {\n prefetchProducts: true,\n loadTimeoutMs: 5000,\n};\n/**\n * Controller for managing paywall views.\n *\n * @remarks\n * This class provides methods to present, dismiss, and handle events for paywall views\n * created with the Paywall Builder. Create instances using the {@link createPaywallView} function\n * rather than directly constructing this class.\n *\n * @public\n */\nexport class PaywallViewController {\n /**\n * Intended way to create a ViewController instance.\n * It prepares a native controller to be presented\n * and creates reference between native controller and JS instance\n * @internal\n */\n static async create(paywall, params, adaptyPlugin) {\n const controller = new PaywallViewController(adaptyPlugin);\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_create_paywall_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ paywall, params }));\n const paywallCoder = new AdaptyPaywallCoder();\n const paramsCoder = new AdaptyUICreatePaywallViewParamsCoder();\n const paramsWithDefaults = Object.assign(Object.assign({}, DEFAULT_PARAMS), params);\n const data = Object.assign({ method: methodKey, paywall: paywallCoder.encode(paywall) }, paramsCoder.encode(paramsWithDefaults));\n const result = (await controller.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log));\n controller.id = result.id;\n controller.viewEmitter = new PaywallViewEmitter(controller.id);\n await controller.setEventHandlers(DEFAULT_EVENT_HANDLERS);\n return controller;\n }\n /**\n * Since constructors in JS cannot be async, it is not\n * preferred to create ViewControllers in direct way.\n * Consider using @link{ViewController.create} instead\n *\n * @internal\n */\n constructor(adaptyPlugin) {\n this.id = null;\n this.viewEmitter = null;\n this.onRequestClose = async () => {\n try {\n await this.dismiss();\n }\n catch (error) {\n Log.warn('setEventHandlers', () => 'Failed to dismiss paywall', () => ({ error }));\n }\n };\n this.adaptyPlugin = adaptyPlugin;\n }\n /**\n * Presents the paywall view as a modal screen.\n *\n * @remarks\n * Calling `present` on an already visible paywall view will result in an error.\n * The paywall will be displayed with the configured presentation style on iOS.\n * On Android, the paywall is always presented as a full-screen activity.\n *\n * @param options - Optional presentation options\n * @param options.iosPresentationStyle - iOS presentation style. Available options: `'full_screen'` (default) or `'page_sheet'`. Only affects iOS platform.\n * @returns A promise that resolves when the paywall is presented.\n * @throws {@link AdaptyError} if the view reference is invalid or the view is already presented.\n *\n * @example\n * Present with default full-screen style\n * ```typescript\n * import { adapty, createPaywallView } from '@adapty/capacitor';\n *\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * const view = await createPaywallView(paywall);\n * await view.present();\n * ```\n *\n * @example\n * Present with page sheet style on iOS\n * ```typescript\n * await view.present({ iosPresentationStyle: 'page_sheet' });\n * ```\n */\n async present(options = {}) {\n var _a;\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_present_paywall_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id, iosPresentationStyle: options.iosPresentationStyle }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n const data = {\n method: methodKey,\n id: this.id,\n ios_presentation_style: (_a = options.iosPresentationStyle) !== null && _a !== void 0 ? _a : 'full_screen',\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n }\n /**\n * Dismisses the paywall view.\n *\n * @remarks\n * This method closes the paywall and cleans up associated resources.\n * After dismissing, the view controller instance cannot be reused.\n *\n * @returns A promise that resolves when the paywall is dismissed.\n * @throws {@link AdaptyError} if the view reference is invalid.\n *\n * @example\n * ```typescript\n * import { createPaywallView } from '@adapty/capacitor';\n *\n * const view = await createPaywallView(paywall);\n * await view.present();\n * // ... later\n * await view.dismiss();\n * ```\n */\n async dismiss() {\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_dismiss_paywall_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n const data = {\n method: methodKey,\n id: this.id,\n destroy: true,\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n this.clearEventHandlers();\n }\n /**\n * Displays a dialog to the user.\n *\n * @remarks\n * Use this method to show custom dialogs within the paywall flow.\n * If you provide two actions in the config, the primary action should cancel the operation\n * and leave things unchanged, while the secondary action should confirm the operation.\n *\n * @param config - Configuration for the dialog.\n * @param config.title - The dialog title.\n * @param config.content - The dialog message content.\n * @param config.primaryActionTitle - The title for the primary (default) action button.\n * @param config.secondaryActionTitle - Optional. The title for the secondary action button.\n * @returns A promise that resolves to the action type that the user selected: `'primary'` or `'secondary'`.\n * @throws {@link AdaptyError} if the view reference is invalid.\n *\n * @example\n * Show confirmation dialog\n * ```typescript\n * const action = await view.showDialog({\n * title: 'Confirm Purchase',\n * content: 'Are you sure you want to proceed with this purchase?',\n * primaryActionTitle: 'Cancel',\n * secondaryActionTitle: 'Continue'\n * });\n *\n * if (action === 'secondary') {\n * console.log('User confirmed');\n * }\n * ```\n */\n async showDialog(config) {\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_show_dialog';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n const dialogConfig = {\n default_action_title: config.primaryActionTitle,\n secondary_action_title: config.secondaryActionTitle,\n title: config.title,\n content: config.content,\n };\n const data = {\n method: methodKey,\n id: this.id,\n configuration: dialogConfig,\n };\n return await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n }\n /**\n * Registers event handlers for paywall UI events.\n *\n * @remarks\n * Each event type can have only one handler — new handlers replace existing ones.\n * Default handlers are registered automatically in {@link createPaywallView} and provide standard closing behavior:\n * - `onCloseButtonPress` - closes the paywall\n * - `onAndroidSystemBack` - closes the paywall (Android only)\n * - `onRestoreCompleted` - closes the paywall after successful restore\n * - `onRenderingFailed` - closes the paywall when rendering fails\n * - `onPurchaseCompleted` - closes the paywall after successful purchase\n *\n * If you want to override these listeners, we strongly recommend returning `true`\n * (or `purchaseResult.type !== 'user_cancelled'` in case of `onPurchaseCompleted`)\n * from your custom listener to retain default closing behavior.\n *\n * Calling this method multiple times will replace previously registered handlers for provided events.\n *\n * @see {@link https://adapty.io/docs/capacitor-handling-events | Handling View Events}\n *\n * @param eventHandlers - Set of event handling callbacks. Only provided handlers will be registered or updated.\n * @returns A promise that resolves to an unsubscribe function that removes all registered listeners.\n *\n * @example\n * Register custom event handlers\n * ```typescript\n * import { createPaywallView } from '@adapty/capacitor';\n *\n * const view = await createPaywallView(paywall);\n *\n * const unsubscribe = await view.setEventHandlers({\n * onPurchaseStarted: (product) => {\n * console.log('Purchase started:', product.vendorProductId);\n * },\n * onPurchaseCompleted: (result) => {\n * console.log('Purchase completed:', result.type);\n * // Return true to keep default closing behavior\n * return result.type !== 'user_cancelled';\n * },\n * onPurchaseFailed: (error) => {\n * console.error('Purchase failed:', error);\n * }\n * });\n *\n * await view.present();\n *\n * // Later, unsubscribe all handlers\n * unsubscribe();\n * ```\n */\n async setEventHandlers(eventHandlers = {}) {\n var _a;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'setEventHandlers' });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n Log.verbose('setEventHandlers', () => 'Registering event handlers for view', () => ({ id: this.id }));\n const viewEmitter = (_a = this.viewEmitter) !== null && _a !== void 0 ? _a : new PaywallViewEmitter(this.id);\n this.viewEmitter = viewEmitter;\n const wrappedErrorLogEventHandlers = mapValues(eventHandlers, (handler, eventName) => handler && typeof handler === 'function'\n ? withErrorContext(handler, eventName, 'PaywallViewController')\n : undefined);\n // Merge with defaults to ensure default behavior is preserved after unsubscribe/resubscribe cycles\n const finalEventHandlers = Object.assign(Object.assign({}, DEFAULT_EVENT_HANDLERS), wrappedErrorLogEventHandlers);\n for (const [eventName, handler] of Object.entries(finalEventHandlers)) {\n if (handler && typeof handler === 'function') {\n try {\n await viewEmitter.addListener(eventName, handler, this.onRequestClose);\n Log.verbose('setEventHandlers', () => 'Registered handler for', () => ({ eventName }));\n }\n catch (error) {\n Log.error('setEventHandlers', () => `Failed to register handler for ${eventName}`, () => ({ error }));\n }\n }\n }\n // Return unsubscribe function\n const unsubscribe = () => {\n Log.info('setEventHandlers', () => 'Unsubscribing event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n };\n return unsubscribe;\n }\n /**\n * Clears all registered event handlers.\n *\n * @remarks\n * This method removes all previously registered event handlers.\n * After calling this method, no event handlers will be active\n * until you call {@link setEventHandlers} again.\n *\n * Use this after dismiss to remove all event handlers\n *\n * @example\n * ```typescript\n * const view = await createPaywallView(paywall);\n * await view.setEventHandlers({ onPurchaseCompleted: handlePurchase });\n *\n * // Later, clear all handlers\n * view.clearEventHandlers();\n * ```\n */\n clearEventHandlers() {\n Log.info('clearEventHandlers', () => 'Clearing all event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n }\n}\n//# sourceMappingURL=paywall-view-controller.js.map","export class AdaptyUICreateOnboardingViewParamsCoder {\n encode(data) {\n const result = {};\n if (data.externalUrlsPresentation) {\n result.external_urls_presentation = data.externalUrlsPresentation;\n }\n return result;\n }\n}\n//# sourceMappingURL=adapty-ui-create-onboarding-view-params.js.map","// Onboarding Event IDs\nexport const OnboardingEventId = {\n Close: 'onboarding_on_close_action',\n Custom: 'onboarding_on_custom_action',\n Paywall: 'onboarding_on_paywall_action',\n StateUpdated: 'onboarding_on_state_updated_action',\n FinishedLoading: 'onboarding_did_finish_loading',\n Analytics: 'onboarding_on_analytics_action',\n Error: 'onboarding_did_fail_with_error',\n};\n//# sourceMappingURL=onboarding-events.js.map","import { AdaptyError } from '../adapty-error';\nimport { AdaptyNativeErrorCoder } from './adapty-native-error';\nimport { AdaptyUiOnboardingMetaCoder } from './adapty-ui-onboarding-meta';\nimport { AdaptyUiOnboardingStateUpdatedActionCoder } from './adapty-ui-onboarding-state-updated-action';\nimport { OnboardingEventId } from '../types/onboarding-events';\n// Parser\nexport function parseOnboardingEvent(input, ctx) {\n var _a;\n let obj;\n try {\n obj = JSON.parse(input);\n }\n catch (error) {\n throw AdaptyError.failedToDecode(`Failed to decode event: ${error === null || error === void 0 ? void 0 : error.message}`);\n }\n const eventId = obj['id'];\n if (!(eventId === null || eventId === void 0 ? void 0 : eventId.startsWith('onboarding_'))) {\n return null;\n }\n const viewObj = obj['view'];\n const view = {\n id: viewObj['id'],\n placementId: viewObj['placement_id'],\n variationId: viewObj['variation_id'],\n };\n const decodeMeta = () => getOnboardingCoder('meta', ctx).decode(obj['meta']);\n switch (eventId) {\n case OnboardingEventId.Close:\n case OnboardingEventId.Custom:\n case OnboardingEventId.Paywall:\n return {\n id: eventId,\n view,\n actionId: (_a = obj['action_id']) !== null && _a !== void 0 ? _a : '',\n meta: decodeMeta(),\n };\n case OnboardingEventId.StateUpdated:\n return {\n id: eventId,\n view,\n action: getOnboardingCoder('action', ctx).decode(obj['action']),\n meta: decodeMeta(),\n };\n case OnboardingEventId.FinishedLoading:\n return {\n id: eventId,\n view,\n meta: decodeMeta(),\n };\n case OnboardingEventId.Analytics: {\n const eventObj = obj['event'];\n return {\n id: eventId,\n view,\n event: {\n name: eventObj['name'],\n elementId: eventObj['element_id'],\n reply: eventObj['reply'],\n },\n meta: decodeMeta(),\n };\n }\n case OnboardingEventId.Error: {\n const errorCoder = getOnboardingCoder('error', ctx);\n const decodedError = errorCoder.decode(obj['error']);\n return {\n id: eventId,\n view,\n error: errorCoder.getError(decodedError),\n };\n }\n default:\n return null;\n }\n}\nfunction getOnboardingCoder(type, _ctx) {\n switch (type) {\n case 'meta':\n return new AdaptyUiOnboardingMetaCoder();\n case 'action':\n return new AdaptyUiOnboardingStateUpdatedActionCoder();\n case 'error':\n return new AdaptyNativeErrorCoder();\n }\n}\n//# sourceMappingURL=parse-onboarding.js.map","import { parseOnboardingEvent } from '../shared/coders/parse-onboarding';\nimport { OnboardingEventId } from '../shared/types/onboarding-events';\nimport { BaseViewEmitter } from './base-view-emitter';\n/**\n * OnboardingViewEmitter manages event handlers for onboarding view events.\n * Each event type can have only one handler - new handlers replace existing ones.\n */\nexport class OnboardingViewEmitter extends BaseViewEmitter {\n parseEventData(rawEventData, ctx) {\n const result = parseOnboardingEvent(rawEventData, ctx);\n if (!result) {\n throw new Error('Failed to parse onboarding event');\n }\n return result;\n }\n getNativeEventForHandler(event) {\n return HANDLER_TO_NATIVE_EVENT[event];\n }\n getHandlerForNativeEvent(nativeEvent) {\n var _a;\n return (_a = NATIVE_EVENT_RESOLVER[nativeEvent]) !== null && _a !== void 0 ? _a : null;\n }\n extractCallbackArgs(handlerName, eventData) {\n return extractCallbackArgs(handlerName, eventData);\n }\n getEventViewId(eventData) {\n var _a, _b;\n return (_b = (_a = eventData === null || eventData === void 0 ? void 0 : eventData.view) === null || _a === void 0 ? void 0 : _a.id) !== null && _b !== void 0 ? _b : null;\n }\n getEmitterName() {\n return 'OnboardingViewEmitter';\n }\n}\nconst HANDLER_TO_NATIVE_EVENT = {\n onError: 'onboarding_did_fail_with_error',\n onAnalytics: 'onboarding_on_analytics_action',\n onFinishedLoading: 'onboarding_did_finish_loading',\n onClose: 'onboarding_on_close_action',\n onCustom: 'onboarding_on_custom_action',\n onPaywall: 'onboarding_on_paywall_action',\n onStateUpdated: 'onboarding_on_state_updated_action',\n};\nconst NATIVE_EVENT_RESOLVER = {\n onboarding_did_fail_with_error: 'onError',\n onboarding_on_analytics_action: 'onAnalytics',\n onboarding_did_finish_loading: 'onFinishedLoading',\n onboarding_on_close_action: 'onClose',\n onboarding_on_custom_action: 'onCustom',\n onboarding_on_paywall_action: 'onPaywall',\n onboarding_on_state_updated_action: 'onStateUpdated',\n};\nfunction extractCallbackArgs(_handlerName, event) {\n switch (event.id) {\n case OnboardingEventId.Close:\n case OnboardingEventId.Custom:\n case OnboardingEventId.Paywall:\n return [event.actionId, event.meta];\n case OnboardingEventId.StateUpdated:\n return [event.action, event.meta];\n case OnboardingEventId.FinishedLoading:\n return [event.meta];\n case OnboardingEventId.Analytics:\n return [\n Object.assign(Object.assign({}, event.event), { \n // Add backward compatibility: populate element_id from elementId\n element_id: event.event.elementId }),\n event.meta,\n ];\n case OnboardingEventId.Error:\n return [event.error];\n }\n}\n//# sourceMappingURL=onboarding-view-emitter.js.map","import { AdaptyError } from '../shared/adapty-error';\nimport { AdaptyOnboardingCoder } from '../shared/coders/adapty-onboarding';\nimport { AdaptyUICreateOnboardingViewParamsCoder } from '../shared/coders/adapty-ui-create-onboarding-view-params';\nimport { LogContext, Log } from '../shared/logger';\nimport { WebPresentation } from '../shared/types';\nimport { mapValues } from '../shared/utils/map-values';\nimport { withErrorContext } from '../shared/utils/with-error-context';\nimport { OnboardingViewEmitter } from './onboarding-view-emitter';\nimport { DEFAULT_ONBOARDING_EVENT_HANDLERS } from './types';\nexport const DEFAULT_ONBOARDING_PARAMS = {\n externalUrlsPresentation: WebPresentation.BrowserInApp,\n};\n/**\n * Controller for managing onboarding views.\n *\n * @remarks\n * This class provides methods to present, dismiss, and handle events for onboarding views\n * created with the Onboarding Builder. Create instances using the {@link createOnboardingView} function\n * rather than directly constructing this class.\n *\n * @public\n */\nexport class OnboardingViewController {\n /**\n * Intended way to create a OnboardingViewController instance.\n * It prepares a native controller to be presented\n * and creates reference between native controller and JS instance\n * @internal\n */\n static async create(onboarding, adaptyPlugin, params = {}) {\n const controller = new OnboardingViewController(adaptyPlugin);\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_create_onboarding_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ onboarding, params }));\n const coder = new AdaptyOnboardingCoder();\n const paramsWithDefaults = Object.assign(Object.assign({}, DEFAULT_ONBOARDING_PARAMS), params);\n const encodedParams = new AdaptyUICreateOnboardingViewParamsCoder().encode(paramsWithDefaults);\n const data = Object.assign({ method: methodKey, onboarding: coder.encode(onboarding) }, encodedParams);\n const result = (await controller.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log));\n controller.id = result.id;\n await controller.setEventHandlers(DEFAULT_ONBOARDING_EVENT_HANDLERS);\n return controller;\n }\n /**\n * Since constructors in JS cannot be async, it is not\n * preferred to create ViewControllers in direct way.\n * Consider using @link{OnboardingViewController.create} instead\n *\n * @internal\n */\n constructor(adaptyPlugin) {\n this.id = null;\n this.viewEmitter = null;\n this.onRequestClose = async () => {\n try {\n await this.dismiss();\n }\n catch (error) {\n Log.warn('setEventHandlers', () => 'Failed to dismiss onboarding', () => ({ error }));\n }\n };\n this.adaptyPlugin = adaptyPlugin;\n }\n /**\n * Presents the onboarding view as a modal screen.\n *\n * @remarks\n * Calling `present` on an already visible onboarding view will result in an error.\n * The onboarding will be displayed with the configured presentation style on iOS.\n * On Android, the onboarding is always presented as a full-screen activity.\n *\n * @param options - Optional presentation options\n * @param options.iosPresentationStyle - iOS presentation style. Available options: `'full_screen'` (default) or `'page_sheet'`. Only affects iOS platform.\n * @returns A promise that resolves when the onboarding is presented.\n * @throws {@link AdaptyError} if the view reference is invalid or the view is already presented.\n *\n * @example\n * Present with default full-screen style\n * ```typescript\n * import { adapty, createOnboardingView } from '@adapty/capacitor';\n *\n * const onboarding = await adapty.getOnboarding({ placementId: 'YOUR_PLACEMENT_ID' });\n * const view = await createOnboardingView(onboarding);\n * await view.present();\n * ```\n *\n * @example\n * Present with page sheet style on iOS\n * ```typescript\n * await view.present({ iosPresentationStyle: 'page_sheet' });\n * ```\n */\n async present(options = {}) {\n var _a;\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_present_onboarding_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id, iosPresentationStyle: options.iosPresentationStyle }));\n if (this.id === null) {\n throw new AdaptyError({ adaptyCode: 2002, message: 'No view reference' });\n }\n const data = {\n method: methodKey,\n id: this.id,\n ios_presentation_style: (_a = options.iosPresentationStyle) !== null && _a !== void 0 ? _a : 'full_screen',\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n }\n /**\n * Dismisses the onboarding view.\n *\n * @remarks\n * This method closes the onboarding and cleans up associated resources.\n * After dismissing, the view controller instance cannot be reused.\n *\n * @returns A promise that resolves when the onboarding is dismissed.\n * @throws {@link AdaptyError} if the view reference is invalid.\n *\n * @example\n * ```typescript\n * import { createOnboardingView } from '@adapty/capacitor';\n *\n * const view = await createOnboardingView(onboarding);\n * await view.present();\n * // ... later\n * await view.dismiss();\n * ```\n */\n async dismiss() {\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_dismiss_onboarding_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({ adaptyCode: 2002, message: 'No view reference' });\n }\n const data = {\n method: methodKey,\n id: this.id,\n destroy: true,\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n this.clearEventHandlers();\n }\n /**\n * Registers event handlers for onboarding UI events.\n *\n * @remarks\n * Each event type can have only one handler — new handlers replace existing ones.\n * Default handlers are registered automatically in {@link createOnboardingView} and provide standard closing behavior:\n * - `onClose` - closes the onboarding when the close button is pressed or system back is used\n *\n * If you want to override the `onClose` listener, we strongly recommend returning `true`\n * from your custom listener to retain default closing behavior.\n *\n * Calling this method multiple times will replace previously registered handlers for provided events.\n *\n * @see {@link https://adapty.io/docs/capacitor-handling-onboarding-events | Handling Onboarding Events}\n *\n * @param eventHandlers - Set of event handling callbacks. Only provided handlers will be registered or updated.\n * @returns A promise that resolves to an unsubscribe function that removes all registered listeners.\n *\n * @example\n * Register custom event handlers\n * ```typescript\n * import { createOnboardingView } from '@adapty/capacitor';\n *\n * const view = await createOnboardingView(onboarding);\n *\n * const unsubscribe = await view.setEventHandlers({\n * onClose: () => {\n * console.log('Onboarding closed');\n * // Return true to keep default closing behavior\n * return true;\n * },\n * onActionPerformed: (action) => {\n * console.log('Action performed:', action.name);\n * },\n * onProductSelected: (product) => {\n * console.log('Product selected:', product.vendorProductId);\n * }\n * });\n *\n * await view.present();\n *\n * // Later, unsubscribe all handlers\n * unsubscribe();\n * ```\n */\n async setEventHandlers(eventHandlers = {}) {\n var _a;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'setEventHandlers' });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({ adaptyCode: 2002, message: 'No view reference' });\n }\n Log.verbose('setEventHandlers', () => 'Registering onboarding event handlers for view', () => ({ id: this.id }));\n const viewEmitter = (_a = this.viewEmitter) !== null && _a !== void 0 ? _a : new OnboardingViewEmitter(this.id);\n this.viewEmitter = viewEmitter;\n const wrappedErrorLogEventHandlers = mapValues(eventHandlers, (handler, eventName) => handler && typeof handler === 'function'\n ? withErrorContext(handler, eventName, 'OnboardingViewController')\n : undefined);\n // Merge with defaults to ensure default behavior is preserved after unsubscribe/resubscribe cycles\n const finalEventHandlers = Object.assign(Object.assign({}, DEFAULT_ONBOARDING_EVENT_HANDLERS), wrappedErrorLogEventHandlers);\n for (const [eventName, handler] of Object.entries(finalEventHandlers)) {\n if (handler && typeof handler === 'function') {\n try {\n await viewEmitter.addListener(eventName, handler, this.onRequestClose);\n Log.verbose('setEventHandlers', () => 'Registered onboarding handler', () => ({ eventName }));\n }\n catch (error) {\n Log.error('setEventHandlers', () => `Failed to register onboarding handler for ${eventName}`, () => ({ error }));\n }\n }\n }\n const unsubscribe = () => {\n Log.info('setEventHandlers', () => 'Unsubscribing onboarding event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n };\n return unsubscribe;\n }\n /**\n * Clears all registered event handlers.\n *\n * @remarks\n * This method removes all previously registered event handlers.\n * After calling this method, no event handlers will be active\n * until you call {@link setEventHandlers} again.\n *\n * Use this after dismiss to remove all event handlers.\n *\n * @example\n * ```typescript\n * const view = await createOnboardingView(onboarding);\n * await view.setEventHandlers({ onClose: handleClose });\n *\n * // Later, clear all handlers\n * view.clearEventHandlers();\n * ```\n */\n clearEventHandlers() {\n Log.info('clearEventHandlers', () => 'Clearing all onboarding event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n }\n}\n//# sourceMappingURL=onboarding-view-controller.js.map","import { Adapty } from '../adapty';\nimport { PaywallViewController } from './paywall-view-controller';\nconst adaptyPlugin = new Adapty();\n/**\n * Creates a paywall view controller.\n * You can use it to further configure a view or present it.\n *\n * @see {@link https://adapty.io/docs/capacitor-present-paywalls | [DOC] Creating a paywall view}\n *\n * @param {AdaptyPaywall} paywall - paywall that you want to present.\n * @param {CreatePaywallViewParamsInput | undefined} [params] - additional params.\n * @returns {Promise<PaywallViewController>} ViewController — A promise that resolves to a ViewController instance.\n *\n * @example\n * ```ts\n * const paywall = await adapty.getPaywall(\"MY_PAYWALL\");\n * const view = await createPaywallView(paywall);\n * view.present();\n * ```\n *\n * @throws {AdaptyError} — If paywall is not found,\n * does not have a no-code view configured\n * or if there is an error while creating a view.\n */\nexport async function createPaywallView(paywall, params = {}) {\n const controller = await PaywallViewController.create(paywall, params, adaptyPlugin);\n return controller;\n}\n//# sourceMappingURL=create-paywall-view.js.map","import { Adapty } from '../adapty';\nimport { OnboardingViewController } from './onboarding-view-controller';\nconst adaptyPlugin = new Adapty();\n/**\n * Creates an onboarding view controller.\n * You can use it to further configure a view or present it.\n *\n * @see {@link https://adapty.io/docs/capacitor-get-onboardings | [DOC] Creating an onboarding view}\n *\n * @param {AdaptyOnboarding} onboarding - onboarding that you want to present.\n * @param {CreateOnboardingViewParamsInput | undefined} [params] - additional params.\n * @returns {Promise<OnboardingViewController>} ViewController — A promise that resolves to a ViewController instance.\n *\n * @example\n * ```ts\n * const onboarding = await adapty.getOnboarding({ placementId: 'MY_PLACEMENT' });\n * const view = await createOnboardingView(onboarding);\n * view.present();\n * ```\n *\n * @example\n * ```ts\n * const view = await createOnboardingView(onboarding, {\n * externalUrlsPresentation: WebPresentation.BrowserOutApp\n * });\n * ```\n *\n * @throws {AdaptyError} — If onboarding is not found,\n * does not have a no-code view configured\n * or if there is an error while creating a view.\n */\nexport async function createOnboardingView(onboarding, params = {}) {\n const controller = await OnboardingViewController.create(onboarding, adaptyPlugin, params);\n return controller;\n}\n//# sourceMappingURL=create-onboarding-view.js.map","import { Adapty } from './adapty';\nexport const adapty = new Adapty();\nexport * from './shared';\nexport { consoleLogSink } from './shared/logger';\nexport * from './shared/constants';\nexport { AdaptyError } from './shared/adapty-error';\nexport * from './shared/types';\nexport { createPaywallView, PaywallViewController, createOnboardingView, OnboardingViewController, } from './ui-builder/index';\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class AdaptyCapacitorPluginWeb extends WebPlugin {\n addListener(eventName, listenerFunc) {\n return super.addListener(eventName, listenerFunc);\n }\n async removeAllListeners() {\n await super.removeAllListeners();\n }\n unsupported() {\n return this.unimplemented('[Adapty] Web platform is not supported');\n }\n handleMethodCall() {\n return Promise.reject(this.unsupported());\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","__rest","this","Capacitor","getCoder","version","VERSION","HANDLER_TO_NATIVE_EVENT","NATIVE_EVENT_RESOLVER","extractCallbackArgs","adaptyPlugin","WebPlugin"],"mappings":"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"}
1
+ {"version":3,"file":"plugin.js","sources":["../node_modules/@adapty/core/dist/index.mjs","esm/bridge/plugin.js","esm/version.js","esm/adapters.js","esm/coders/factory.js","esm/coders/parse.js","esm/adapty-emitter.js","esm/default-configs.js","esm/adapty.js","esm/coders/parse-paywall.js","esm/ui-builder/base-view-emitter.js","esm/ui-builder/paywall-view-emitter.js","esm/ui-builder/types.js","esm/ui-builder/paywall-view-controller.js","esm/coders/parse-onboarding.js","esm/ui-builder/onboarding-view-emitter.js","esm/ui-builder/onboarding-view-controller.js","esm/ui-builder/create-paywall-view.js","esm/ui-builder/create-onboarding-view.js","esm/index.js","esm/bridge/web.js"],"sourcesContent":["//#region src/types/inputs.ts\n/**\n* Log levels for the SDK\n*\n* @remarks\n* Logging is performed on a native side.\n* So you are expected to watch logs in Xcode or Android Studio.\n*/\nconst LogLevel = Object.freeze({\n\tVERBOSE: \"verbose\",\n\tERROR: \"error\",\n\tWARN: \"warn\",\n\tINFO: \"info\"\n});\nconst FetchPolicy = Object.freeze({\n\tReloadRevalidatingCacheData: \"reload_revalidating_cache_data\",\n\tReturnCacheDataElseLoad: \"return_cache_data_else_load\",\n\tReturnCacheDataIfNotExpiredElseLoad: \"return_cache_data_if_not_expired_else_load\"\n});\nconst AdaptyAndroidSubscriptionUpdateReplacementMode = Object.freeze({\n\tChargeFullPrice: \"charge_full_price\",\n\tDeferred: \"deferred\",\n\tWithoutProration: \"without_proration\",\n\tChargeProratedPrice: \"charge_prorated_price\",\n\tWithTimeProration: \"with_time_proration\"\n});\n\n//#endregion\n//#region src/logger/console-sink.ts\nfunction getConsoleForLevel(level) {\n\tswitch (level) {\n\t\tcase \"error\": return console.error;\n\t\tcase \"warn\": return console.warn;\n\t\tcase \"verbose\": return console.debug;\n\t\tcase \"info\":\n\t\tdefault: return console.info;\n\t}\n}\nconst consoleLogSink = {\n\tid: \"console\",\n\thandle: (event) => {\n\t\tconst logger = getConsoleForLevel(event.level);\n\t\tlogger(event.formatted, event.params);\n\t}\n};\n\n//#endregion\n//#region src/logger/log.ts\nvar Log = class Log {\n\t/**\n\t* Override the version shown in log messages\n\t* @internal\n\t*/\n\tstatic setVersion(version) {\n\t\tthis._version = version;\n\t}\n\tstatic formatMessage(message, funcName) {\n\t\tconst now = new Date().toISOString();\n\t\treturn `[${now}] [adapty@${this._version}] \"${funcName}\": ${message}`;\n\t}\n\t/** Configure JS logger: replace sinks and/or set default metadata */\n\tstatic configure(config) {\n\t\tif (config.sinks) {\n\t\t\tfor (const sink of this.sinks) sink.destroy?.();\n\t\t\tthis.sinks = config.sinks.slice();\n\t\t}\n\t\tthis.defaultMeta = config.defaultMeta;\n\t}\n\t/** Register additional sink */\n\tstatic addSink(sink) {\n\t\tthis.sinks.push(sink);\n\t}\n\t/** Remove sink by id and call its destroy if present */\n\tstatic removeSink(id) {\n\t\tconst sink = this.sinks.find((sink$1) => sink$1.id === id);\n\t\tthis.sinks = this.sinks.filter((sink$1) => sink$1.id !== id);\n\t\tsink?.destroy?.();\n\t}\n\t/** Clear all sinks and destroy them */\n\tstatic clearSinks() {\n\t\tconst prev = this.sinks;\n\t\tthis.sinks = [];\n\t\tfor (const sink of prev) sink.destroy?.();\n\t}\n\t/**\n\t* Gets the appropriate log level integer for a log level.\n\t* @internal\n\t*/\n\tstatic getLogLevelInt(logLevel) {\n\t\tswitch (logLevel) {\n\t\t\tcase LogLevel.ERROR: return 0;\n\t\t\tcase LogLevel.WARN: return 1;\n\t\t\tcase LogLevel.INFO: return 2;\n\t\t\tcase LogLevel.VERBOSE: return 3;\n\t\t}\n\t}\n\t/**\n\t* Logs a message to the console if the log level is appropriate.\n\t* Uses lazy evaluation to avoid unnecessary computations.\n\t* @internal\n\t*/\n\tstatic log(logLevel, funcName, message, params) {\n\t\tif (!Log.logLevel) return;\n\t\tconst currentLevel = Log.getLogLevelInt(Log.logLevel);\n\t\tconst messageLevel = Log.getLogLevelInt(logLevel);\n\t\tif (messageLevel <= currentLevel) {\n\t\t\tconst resolvedMessage = message();\n\t\t\tconst resolvedParams = params ? params() : void 0;\n\t\t\tconst mergedParams = this.defaultMeta ? {\n\t\t\t\t...this.defaultMeta,\n\t\t\t\t...resolvedParams ?? {}\n\t\t\t} : resolvedParams;\n\t\t\tconst formatted = Log.formatMessage(resolvedMessage, funcName);\n\t\t\tconst event = {\n\t\t\t\ttimestamp: new Date().toISOString(),\n\t\t\t\tversion: this._version,\n\t\t\t\tlevel: logLevel,\n\t\t\t\tfuncName,\n\t\t\t\tmessage: resolvedMessage,\n\t\t\t\tparams: mergedParams,\n\t\t\t\tformatted\n\t\t\t};\n\t\t\tfor (const sink of this.sinks) {\n\t\t\t\tif (sink.levels && !sink.levels.includes(logLevel)) continue;\n\t\t\t\ttry {\n\t\t\t\t\tsink.handle(event);\n\t\t\t\t} catch {}\n\t\t\t}\n\t\t}\n\t}\n\tstatic info(funcName, message, params) {\n\t\tthis.log(LogLevel.INFO, funcName, message, params);\n\t}\n\tstatic warn(funcName, message, params) {\n\t\tthis.log(LogLevel.WARN, funcName, message, params);\n\t}\n\tstatic error(funcName, message, params) {\n\t\tthis.log(LogLevel.ERROR, funcName, message, params);\n\t}\n\tstatic verbose(funcName, message, params) {\n\t\tthis.log(LogLevel.VERBOSE, funcName, message, params);\n\t}\n};\nLog.logLevel = null;\nLog.sinks = [consoleLogSink];\nLog.defaultMeta = void 0;\nLog._version = \"unknown\";\n\n//#endregion\n//#region src/logger/log-scope.ts\nvar LogScope = class {\n\tconstructor(args) {\n\t\tthis.methodName = void 0;\n\t\tthis.onStart = void 0;\n\t\tthis.onSuccess = void 0;\n\t\tthis.onFailed = void 0;\n\t\tthis.onWait = void 0;\n\t\tthis.onWaitComplete = void 0;\n\t\tthis.methodName = args.methodName;\n\t\tthis.onStart = args.onStart;\n\t\tthis.onSuccess = args.onSuccess;\n\t\tthis.onFailed = args.onFailed;\n\t\tthis.onWait = args.onWait;\n\t\tthis.onWaitComplete = args.onWaitComplete;\n\t}\n\tstart(args) {\n\t\tthis.onStart(args);\n\t}\n\twait(args) {\n\t\tthis.onWait(args);\n\t}\n\twaitComplete(args) {\n\t\tthis.onWaitComplete(args);\n\t}\n\tsuccess(args) {\n\t\tthis.onSuccess(args);\n\t}\n\tfailed(args) {\n\t\tthis.onFailed(args);\n\t}\n};\n\n//#endregion\n//#region src/logger/log-context.ts\nvar LogContext = class {\n\tconstructor() {\n\t\tthis.stack = [];\n\t}\n\tcreateScope(step, args, message) {\n\t\treturn new LogScope({\n\t\t\t...args,\n\t\t\tonStart: (payload) => {\n\t\t\t\tthis.stack.push({\n\t\t\t\t\taction: step,\n\t\t\t\t\tfn: args.methodName,\n\t\t\t\t\tpayload\n\t\t\t\t});\n\t\t\t\tLog.verbose(args.methodName, () => `${message}...`, () => payload());\n\t\t\t},\n\t\t\tonSuccess: (payload) => {\n\t\t\t\tthis.stack.push({\n\t\t\t\t\taction: step,\n\t\t\t\t\tfn: args.methodName,\n\t\t\t\t\tpayload,\n\t\t\t\t\tdone: true\n\t\t\t\t});\n\t\t\t\tLog.verbose(args.methodName, () => `${message}: OK`, () => payload());\n\t\t\t},\n\t\t\tonFailed: (payload) => {\n\t\t\t\tthis.stack.push({\n\t\t\t\t\taction: step,\n\t\t\t\t\tfn: args.methodName,\n\t\t\t\t\tpayload,\n\t\t\t\t\terror: true\n\t\t\t\t});\n\t\t\t\tconst resolvedStack = this.stack.map((s) => ({\n\t\t\t\t\t...s,\n\t\t\t\t\tpayload: s.payload()\n\t\t\t\t}));\n\t\t\t\tconst p = payload();\n\t\t\t\tp[\"__stack__\"] = resolvedStack;\n\t\t\t\tLog.error(args.methodName, () => `${message}: FAILED`, () => p);\n\t\t\t},\n\t\t\tonWait: (payload) => {\n\t\t\t\tthis.stack.push({\n\t\t\t\t\taction: step,\n\t\t\t\t\tfn: args.methodName,\n\t\t\t\t\tpayload\n\t\t\t\t});\n\t\t\t\tLog.verbose(args.methodName, () => `<HOLD> ${message}`, () => payload());\n\t\t\t},\n\t\t\tonWaitComplete: (payload) => {\n\t\t\t\tthis.stack.push({\n\t\t\t\t\taction: step,\n\t\t\t\t\tfn: args.methodName,\n\t\t\t\t\tpayload\n\t\t\t\t});\n\t\t\t\tLog.verbose(args.methodName, () => `<UNLOCKED> ${message}`, () => payload());\n\t\t\t}\n\t\t});\n\t}\n\tevent(method) {\n\t\treturn this.createScope(\"EVENT\", method, `Receiving event \"${method.methodName}\"`);\n\t}\n\tcall(args) {\n\t\treturn this.createScope(\"CALL\", args, \"Calling method\");\n\t}\n\tencode(args) {\n\t\treturn this.createScope(\"ENCODE\", args, \"Encoding object\");\n\t}\n\tbridge(args) {\n\t\treturn this.createScope(\"BRIDGE\", args, \"Calling bridge function\");\n\t}\n\tdecode(args) {\n\t\treturn this.createScope(\"DECODE\", args, \"Decoding string\");\n\t}\n};\n\n//#endregion\n//#region src/adapters/defaults.ts\n/**\n* Default platform adapter with unknown OS\n*/\nvar DefaultPlatformAdapter = class {\n\tconstructor() {\n\t\tthis.OS = \"unknown\";\n\t}\n};\n/**\n* Default SDK metadata adapter\n*/\nvar DefaultSdkMetadataAdapter = class {\n\tconstructor(sdkName = \"unknown\", sdkVersion = \"0.0.0\") {\n\t\tthis.sdkName = sdkName;\n\t\tthis.sdkVersion = sdkVersion;\n\t}\n};\n/**\n* Default logger adapter using the real LogContext implementation\n*/\nvar DefaultLoggerAdapter = class {\n\tcreateContext() {\n\t\treturn new LogContext();\n\t}\n};\n\n//#endregion\n//#region src/types/error.ts\nconst ErrorCodeMapping = Object.freeze({\n\t0: \"unknown\",\n\t1: \"clientInvalid\",\n\t3: \"paymentInvalid\",\n\t4: \"paymentNotAllowed\",\n\t5: \"storeProductNotAvailable\",\n\t6: \"cloudServicePermissionDenied\",\n\t7: \"cloudServiceNetworkConnectionFailed\",\n\t8: \"cloudServiceRevoked\",\n\t9: \"privacyAcknowledgementRequired\",\n\t10: \"unauthorizedRequestData\",\n\t11: \"invalidOfferIdentifier\",\n\t12: \"invalidSignature\",\n\t13: \"missingOfferParams\",\n\t14: \"invalidOfferPrice\",\n\t20: \"adaptyNotInitialized\",\n\t22: \"productNotFound\",\n\t24: \"currentSubscriptionToUpdateNotFoundInHistory\",\n\t97: \"billingServiceTimeout\",\n\t98: \"featureNotSupported\",\n\t99: \"billingServiceDisconnected\",\n\t102: \"billingServiceUnavailable\",\n\t103: \"billingUnavailable\",\n\t105: \"developerError\",\n\t106: \"billingError\",\n\t107: \"itemAlreadyOwned\",\n\t108: \"itemNotOwned\",\n\t112: \"billingNetworkError\",\n\t1e3: \"noProductIDsFound\",\n\t1002: \"productRequestFailed\",\n\t1003: \"cantMakePayments\",\n\t1004: \"noPurchasesToRestore\",\n\t1005: \"cantReadReceipt\",\n\t1006: \"productPurchaseFailed\",\n\t1010: \"refreshReceiptFailed\",\n\t1011: \"receiveRestoredTransactionsFailed\",\n\t2002: \"notActivated\",\n\t2003: \"badRequest\",\n\t2004: \"serverError\",\n\t2005: \"networkFailed\",\n\t2006: \"decodingFailed\",\n\t2009: \"encodingFailed\",\n\t3e3: \"analyticsDisabled\",\n\t3001: \"wrongParam\",\n\t3005: \"activateOnceError\",\n\t3006: \"profileWasChanged\",\n\t3007: \"unsupportedData\",\n\t3100: \"persistingDataError\",\n\t3101: \"fetchTimeoutError\",\n\t9e3: \"operationInterrupted\"\n});\nconst ErrorCode = ErrorCodeMapping;\nconst ErrorCodeName = Object.freeze({\n\tunknown: 0,\n\tclientInvalid: 1,\n\tpaymentInvalid: 3,\n\tpaymentNotAllowed: 4,\n\tstoreProductNotAvailable: 5,\n\tcloudServicePermissionDenied: 6,\n\tcloudServiceNetworkConnectionFailed: 7,\n\tcloudServiceRevoked: 8,\n\tprivacyAcknowledgementRequired: 9,\n\tunauthorizedRequestData: 10,\n\tinvalidOfferIdentifier: 11,\n\tinvalidSignature: 12,\n\tmissingOfferParams: 13,\n\tinvalidOfferPrice: 14,\n\tadaptyNotInitialized: 20,\n\tproductNotFound: 22,\n\tcurrentSubscriptionToUpdateNotFoundInHistory: 24,\n\tbillingServiceTimeout: 97,\n\tfeatureNotSupported: 98,\n\tbillingServiceDisconnected: 99,\n\tbillingServiceUnavailable: 102,\n\tbillingUnavailable: 103,\n\tdeveloperError: 105,\n\tbillingError: 106,\n\titemAlreadyOwned: 107,\n\titemNotOwned: 108,\n\tbillingNetworkError: 112,\n\tnoProductIDsFound: 1e3,\n\tproductRequestFailed: 1002,\n\tcantMakePayments: 1003,\n\tnoPurchasesToRestore: 1004,\n\tcantReadReceipt: 1005,\n\tproductPurchaseFailed: 1006,\n\trefreshReceiptFailed: 1010,\n\treceiveRestoredTransactionsFailed: 1011,\n\tnotActivated: 2002,\n\tbadRequest: 2003,\n\tserverError: 2004,\n\tnetworkFailed: 2005,\n\tdecodingFailed: 2006,\n\tencodingFailed: 2009,\n\tanalyticsDisabled: 3e3,\n\twrongParam: 3001,\n\tactivateOnceError: 3005,\n\tprofileWasChanged: 3006,\n\tunsupportedData: 3007,\n\tpersistingDataError: 3100,\n\tfetchTimeoutError: 3101,\n\toperationInterrupted: 9e3\n});\nfunction getErrorCode(error) {\n\tconst errorCode = Object.keys(ErrorCode).find((keyStr) => {\n\t\tconst key = Number(keyStr);\n\t\treturn ErrorCode[key] === error;\n\t});\n\tif (!errorCode) return void 0;\n\treturn Number(errorCode);\n}\nfunction getErrorPrompt(code) {\n\tconst prompt = ErrorCode[code];\n\tif (!prompt) return `Unknown code: ${code}`;\n\treturn prompt;\n}\n\n//#endregion\n//#region src/adapty-error.ts\nvar AdaptyError = class AdaptyError extends Error {\n\tconstructor(input) {\n\t\tsuper(AdaptyError.getMessage(input));\n\t\tthis.adaptyCode = void 0;\n\t\tthis.localizedDescription = void 0;\n\t\tthis.detail = void 0;\n\t\tthis.adaptyCode = input.adaptyCode;\n\t\tthis.localizedDescription = input.message;\n\t\tthis.detail = input.detail;\n\t\tif (AdaptyError.middleware) AdaptyError.middleware(this);\n\t}\n\tstatic set onError(callback) {\n\t\tAdaptyError.middleware = callback;\n\t}\n\tstatic failedToDecodeNativeError(message, error) {\n\t\treturn new AdaptyError({\n\t\t\tadaptyCode: 0,\n\t\t\tmessage,\n\t\t\tdetail: JSON.stringify(error)\n\t\t});\n\t}\n\tstatic failedToEncode(message) {\n\t\treturn new AdaptyError({\n\t\t\tadaptyCode: 2009,\n\t\t\tmessage\n\t\t});\n\t}\n\tstatic failedToDecode(message) {\n\t\treturn new AdaptyError({\n\t\t\tadaptyCode: 2006,\n\t\t\tmessage\n\t\t});\n\t}\n\tstatic getMessage(input) {\n\t\tconst code = input.adaptyCode;\n\t\tconst codeText = ErrorCode[code];\n\t\tlet message = `#${code} (${codeText}): ${input.message}`;\n\t\tif (AdaptyError.prefix) message = `${AdaptyError.prefix} ${message}`;\n\t\treturn message;\n\t}\n};\nAdaptyError.prefix = \"\";\nAdaptyError.middleware = void 0;\n\n//#endregion\n//#region src/coders/coder.ts\nvar Coder = class {\n\tconstructor(platform = new DefaultPlatformAdapter()) {\n\t\tthis.platform = void 0;\n\t\tthis.platform = platform;\n\t}\n\tencode(data) {\n\t\treturn this.encodeWithProperties(data, this.properties);\n\t}\n\tdecode(data) {\n\t\treturn this.decodeWithProperties(data, this.properties);\n\t}\n\tisType(value, type) {\n\t\tswitch (type) {\n\t\t\tcase \"string\":\n\t\t\tcase \"boolean\":\n\t\t\tcase \"number\": return typeof value === type;\n\t\t\tcase \"object\": return value !== null && typeof value === \"object\";\n\t\t\tcase \"array\": return Array.isArray(value);\n\t\t}\n\t}\n\tgetNestedValue(obj, key) {\n\t\tconst keys = key.split(\".\");\n\t\tlet current;\n\t\tif (typeof obj === \"string\") try {\n\t\t\tcurrent = JSON.parse(obj);\n\t\t} catch (error) {\n\t\t\treturn void 0;\n\t\t}\n\t\telse current = obj;\n\t\tfor (let i = 0; i < keys.length; i++) {\n\t\t\tconst key$1 = keys[i];\n\t\t\tif (current[key$1] !== void 0) current = current[key$1];\n\t\t\telse return void 0;\n\t\t}\n\t\treturn current;\n\t}\n\tassignNestedValue(obj, key, value) {\n\t\tconst keys = String(key).split(\".\");\n\t\tlet currentObj = obj;\n\t\tfor (let i = 0; i < keys.length - 1; i++) {\n\t\t\tconst key$1 = keys[i];\n\t\t\tif (currentObj[key$1] === void 0) currentObj[key$1] = {};\n\t\t\tcurrentObj = currentObj[key$1];\n\t\t}\n\t\tcurrentObj[keys[keys.length - 1]] = value;\n\t\treturn obj;\n\t}\n\tencodeWithProperties(data, properties) {\n\t\tconst result = {};\n\t\tfor (const key in data) {\n\t\t\tif (key === \"ios\" || key === \"android\") {\n\t\t\t\tconst platformResult = this.encodeWithProperties(data[key], properties[key]);\n\t\t\t\tObject.assign(result, platformResult);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tconst property = properties[key];\n\t\t\tif (!property) throw AdaptyError.failedToEncode(`Failed to find encoder for property \"${key}\"`);\n\t\t\tconst converter = property.converter;\n\t\t\tthis.assignNestedValue(result, property.key, converter ? converter.encode(data[key]) : data[key]);\n\t\t}\n\t\treturn result;\n\t}\n\tdecodeWithProperties(data, properties, platform) {\n\t\tconst result = {};\n\t\tfor (const key in properties) {\n\t\t\tif (key === \"android\" || key === \"ios\") {\n\t\t\t\tresult[key] = this.decodeWithProperties(data, properties[key], key);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tconst property = properties[key];\n\t\t\tif (!property) throw AdaptyError.failedToDecode(`Failed to find decoder for property \"${key}\"`);\n\t\t\tconst value = this.getNestedValue(data, property.key);\n\t\t\tif (property.required && value === void 0 && (!platform || platform == this.platform.OS)) throw AdaptyError.failedToDecode(`Failed to decode native response, because it is missing required property \"${key}\"`);\n\t\t\tif (value == null) continue;\n\t\t\tif (!this.isType(value, property.type)) throw AdaptyError.failedToDecode(`Failed to decode native response, because its property \"${key}\" has invalid type. Expected type: ${property.type}. Received type: ${typeof value}`);\n\t\t\tresult[key] = property.converter ? property.converter.decode(value) : value;\n\t\t}\n\t\treturn result;\n\t}\n};\nvar SimpleCoder = class extends Coder {};\n\n//#endregion\n//#region src/coders/date.ts\n/**\n* Format: yyyy-MM-dd'T'HH:mm:ss.SSSZ\n* OpenAPI: Output.Date\n*/\nvar DateCoder = class {\n\tdecode(input) {\n\t\tlet pureValue = input;\n\t\tif (!input.endsWith(\"Z\")) {\n\t\t\tconst dateParts = input.split(/[-T:.Z]/);\n\t\t\tconst date = new Date(Date.UTC(parseInt(dateParts[0] ?? \"0\", 10), parseInt(dateParts[1] ?? \"0\", 10) - 1, parseInt(dateParts[2] ?? \"0\", 10), parseInt(dateParts[3] ?? \"0\", 10), parseInt(dateParts[4] ?? \"0\", 10), parseInt(dateParts[5] ?? \"0\", 10)));\n\t\t\tpureValue = date.toISOString();\n\t\t}\n\t\tconst parsedValue = Date.parse(pureValue);\n\t\tif (isNaN(parsedValue)) throw AdaptyError.failedToDecode(`Failed to decode a date string into JS Date. String value: ${pureValue}`);\n\t\treturn new Date(parsedValue);\n\t}\n\tencode(value) {\n\t\treturn value.toISOString();\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-access-level.ts\nvar AdaptyAccessLevelCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tactivatedAt: {\n\t\t\t\tkey: \"activated_at\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tactiveIntroductoryOfferType: {\n\t\t\t\tkey: \"active_introductory_offer_type\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tactivePromotionalOfferId: {\n\t\t\t\tkey: \"active_promotional_offer_id\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tactivePromotionalOfferType: {\n\t\t\t\tkey: \"active_promotional_offer_type\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tbillingIssueDetectedAt: {\n\t\t\t\tkey: \"billing_issue_detected_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tcancellationReason: {\n\t\t\t\tkey: \"cancellation_reason\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\texpiresAt: {\n\t\t\t\tkey: \"expires_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tid: {\n\t\t\t\tkey: \"id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tisActive: {\n\t\t\t\tkey: \"is_active\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisInGracePeriod: {\n\t\t\t\tkey: \"is_in_grace_period\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisLifetime: {\n\t\t\t\tkey: \"is_lifetime\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisRefund: {\n\t\t\t\tkey: \"is_refund\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\trenewedAt: {\n\t\t\t\tkey: \"renewed_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tstartsAt: {\n\t\t\t\tkey: \"starts_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tstore: {\n\t\t\t\tkey: \"store\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tunsubscribedAt: {\n\t\t\t\tkey: \"unsubscribed_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tvendorProductId: {\n\t\t\t\tkey: \"vendor_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\twillRenew: {\n\t\t\t\tkey: \"will_renew\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tandroid: { offerId: {\n\t\t\t\tkey: \"offer_id\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t} }\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-ui-media-cache.ts\nvar AdaptyUiMediaCacheCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tmemoryStorageTotalCostLimit: {\n\t\t\t\tkey: \"memory_storage_total_cost_limit\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tmemoryStorageCountLimit: {\n\t\t\t\tkey: \"memory_storage_count_limit\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tdiskStorageSizeLimit: {\n\t\t\t\tkey: \"disk_storage_size_limit\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"number\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-configuration.ts\nvar AdaptyConfigurationCoder = class {\n\tconstructor(platform, sdkMetadata) {\n\t\tthis.platform = platform;\n\t\tthis.sdkMetadata = sdkMetadata;\n\t}\n\tencode(apiKey, params) {\n\t\tconst config = {\n\t\t\tapi_key: apiKey,\n\t\t\tcross_platform_sdk_name: this.sdkMetadata.sdkName,\n\t\t\tcross_platform_sdk_version: this.sdkMetadata.sdkVersion\n\t\t};\n\t\tif (params.customerUserId) config[\"customer_user_id\"] = params.customerUserId;\n\t\tconfig[\"observer_mode\"] = params.observerMode ?? false;\n\t\tconfig[\"ip_address_collection_disabled\"] = params.ipAddressCollectionDisabled ?? false;\n\t\tif (params.logLevel) config[\"log_level\"] = params.logLevel;\n\t\tconfig[\"server_cluster\"] = params.serverCluster ?? \"default\";\n\t\tif (params.backendProxyHost) config[\"backend_proxy_host\"] = params.backendProxyHost;\n\t\tif (params.backendProxyPort) config[\"backend_proxy_port\"] = params.backendProxyPort;\n\t\tconfig[\"activate_ui\"] = params.activateUi ?? true;\n\t\tconst mediaCacheCoder = new AdaptyUiMediaCacheCoder();\n\t\tconfig[\"media_cache\"] = mediaCacheCoder.encode(params.mediaCache ?? {\n\t\t\tmemoryStorageTotalCostLimit: 100 * 1024 * 1024,\n\t\t\tmemoryStorageCountLimit: 2147483647,\n\t\t\tdiskStorageSizeLimit: 100 * 1024 * 1024\n\t\t});\n\t\tif (this.platform.OS === \"ios\") {\n\t\t\tconfig[\"apple_idfa_collection_disabled\"] = params.ios?.idfaCollectionDisabled ?? false;\n\t\t\tif (params.ios?.appAccountToken) config[\"customer_identity_parameters\"] = { app_account_token: params.ios.appAccountToken };\n\t\t\tif (params.ios?.clearDataOnBackup !== void 0) config[\"clear_data_on_backup\"] = params.ios.clearDataOnBackup;\n\t\t}\n\t\tif (this.platform.OS === \"android\") {\n\t\t\tconfig[\"google_adid_collection_disabled\"] = params.android?.adIdCollectionDisabled ?? false;\n\t\t\tconfig[\"google_enable_pending_prepaid_plans\"] = params.android?.pendingPrepaidPlansEnabled ?? false;\n\t\t\tconfig[\"google_local_access_level_allowed\"] = params.android?.localAccessLevelAllowed ?? false;\n\t\t\tif (params.android?.obfuscatedAccountId) config[\"customer_identity_parameters\"] = { obfuscated_account_id: params.android.obfuscatedAccountId };\n\t\t}\n\t\treturn config;\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-subscription-period.ts\nvar AdaptySubscriptionPeriodCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tunit: {\n\t\t\t\tkey: \"unit\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tnumberOfUnits: {\n\t\t\t\tkey: \"number_of_units\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-price.ts\nvar AdaptyPriceCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tamount: {\n\t\t\t\tkey: \"amount\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tcurrencyCode: {\n\t\t\t\tkey: \"currency_code\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tcurrencySymbol: {\n\t\t\t\tkey: \"currency_symbol\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tlocalizedString: {\n\t\t\t\tkey: \"localized_string\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-discount-phase.ts\nvar AdaptyDiscountPhaseCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tlocalizedNumberOfPeriods: {\n\t\t\t\tkey: \"localized_number_of_periods\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tlocalizedSubscriptionPeriod: {\n\t\t\t\tkey: \"localized_subscription_period\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tnumberOfPeriods: {\n\t\t\t\tkey: \"number_of_periods\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tpaymentMode: {\n\t\t\t\tkey: \"payment_mode\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tprice: {\n\t\t\t\tkey: \"price\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyPriceCoder()\n\t\t\t},\n\t\t\tsubscriptionPeriod: {\n\t\t\t\tkey: \"subscription_period\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptySubscriptionPeriodCoder()\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-identify-params.ts\nvar AdaptyIdentifyParamsCoder = class {\n\tconstructor(platform) {\n\t\tthis.platform = platform;\n\t}\n\tencode(params) {\n\t\tif (!params) return void 0;\n\t\tconst result = {};\n\t\tif (this.platform.OS === \"ios\" && params.ios?.appAccountToken) result.app_account_token = params.ios.appAccountToken;\n\t\tif (this.platform.OS === \"android\" && params.android?.obfuscatedAccountId) result.obfuscated_account_id = params.android.obfuscatedAccountId;\n\t\treturn Object.keys(result).length > 0 ? result : void 0;\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-installation-details.ts\nvar AdaptyInstallationDetailsCoder = class {\n\tencode(model) {\n\t\tconst result = {\n\t\t\tinstall_time: new DateCoder().encode(model.installTime),\n\t\t\tapp_launch_count: model.appLaunchCount\n\t\t};\n\t\tif (model.installId) result.install_id = model.installId;\n\t\tif (model.payload) result.payload = model.payload;\n\t\treturn result;\n\t}\n\tdecode(json) {\n\t\treturn {\n\t\t\tinstallTime: new DateCoder().decode(json.install_time),\n\t\t\tappLaunchCount: json.app_launch_count,\n\t\t\tinstallId: json.install_id,\n\t\t\tpayload: json.payload\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-installation-status.ts\nvar AdaptyInstallationStatusCoder = class {\n\tencode(model) {\n\t\tif (model.status === \"determined\") {\n\t\t\tconst details = {\n\t\t\t\tinstall_time: new DateCoder().encode(model.details.installTime),\n\t\t\t\tapp_launch_count: model.details.appLaunchCount\n\t\t\t};\n\t\t\tif (model.details.installId) details.install_id = model.details.installId;\n\t\t\tif (model.details.payload) details.payload = model.details.payload;\n\t\t\treturn {\n\t\t\t\tstatus: \"determined\",\n\t\t\t\tdetails\n\t\t\t};\n\t\t}\n\t\treturn { status: model.status };\n\t}\n\tdecode(json) {\n\t\tif (json.status === \"determined\") {\n\t\t\tconst details = {\n\t\t\t\tinstallTime: new DateCoder().decode(json.details.install_time),\n\t\t\t\tappLaunchCount: json.details.app_launch_count,\n\t\t\t\tinstallId: json.details.install_id,\n\t\t\t\tpayload: json.details.payload\n\t\t\t};\n\t\t\treturn {\n\t\t\t\tstatus: \"determined\",\n\t\t\t\tdetails\n\t\t\t};\n\t\t}\n\t\treturn { status: json.status };\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-native-error.ts\nvar AdaptyNativeErrorCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.type = \"error\";\n\t\tthis.properties = {\n\t\t\tadaptyCode: {\n\t\t\t\tkey: \"adapty_code\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tmessage: {\n\t\t\t\tkey: \"message\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tdetail: {\n\t\t\t\tkey: \"detail\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n\tgetError(data) {\n\t\treturn new AdaptyError({\n\t\t\tadaptyCode: data.adaptyCode,\n\t\t\tmessage: data.message,\n\t\t\tdetail: data.detail\n\t\t});\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-non-subscription.ts\nvar AdaptyNonSubscriptionCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tisConsumable: {\n\t\t\t\tkey: \"is_consumable\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisRefund: {\n\t\t\t\tkey: \"is_refund\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisSandbox: {\n\t\t\t\tkey: \"is_sandbox\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tpurchasedAt: {\n\t\t\t\tkey: \"purchased_at\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tpurchaseId: {\n\t\t\t\tkey: \"purchase_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tstore: {\n\t\t\t\tkey: \"store\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tvendorProductId: {\n\t\t\t\tkey: \"vendor_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tvendorTransactionId: {\n\t\t\t\tkey: \"vendor_transaction_id\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-onboarding-builder.ts\nvar AdaptyOnboardingBuilderCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = { url: {\n\t\t\tkey: \"config_url\",\n\t\t\trequired: true,\n\t\t\ttype: \"string\"\n\t\t} };\n\t}\n};\n\n//#endregion\n//#region src/coders/json.ts\nvar JSONCoder = class {\n\tdecode(input) {\n\t\tif (!input) return {};\n\t\treturn JSON.parse(input);\n\t}\n\tencode(value) {\n\t\tif (Object.keys(value).length === 0) return \"\";\n\t\treturn JSON.stringify(value);\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-remote-config.ts\nvar AdaptyRemoteConfigCoder = class extends Coder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tdata: {\n\t\t\t\tkey: \"data\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new JSONCoder()\n\t\t\t},\n\t\t\tlang: {\n\t\t\t\tkey: \"lang\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n\tdecode(data) {\n\t\tconst codablePart = super.decode(data);\n\t\tconst dataString = JSON.stringify(codablePart.data);\n\t\treturn {\n\t\t\t...codablePart,\n\t\t\tdataString: dataString.length < 4 ? \"\" : dataString\n\t\t};\n\t}\n\tencode(data) {\n\t\tconst { dataString,...codablePart } = data;\n\t\treturn super.encode(codablePart);\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-placement.ts\nvar AdaptyPlacementCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tabTestName: {\n\t\t\t\tkey: \"ab_test_name\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\taudienceName: {\n\t\t\t\tkey: \"audience_name\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tid: {\n\t\t\t\tkey: \"developer_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\trevision: {\n\t\t\t\tkey: \"revision\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\taudienceVersionId: {\n\t\t\t\tkey: \"placement_audience_version_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tisTrackingPurchases: {\n\t\t\t\tkey: \"is_tracking_purchases\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"boolean\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-onboarding.ts\nvar AdaptyOnboardingCoder = class extends Coder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tplacement: {\n\t\t\t\tkey: \"placement\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyPlacementCoder()\n\t\t\t},\n\t\t\tid: {\n\t\t\t\tkey: \"onboarding_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tname: {\n\t\t\t\tkey: \"onboarding_name\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tremoteConfig: {\n\t\t\t\tkey: \"remote_config\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyRemoteConfigCoder()\n\t\t\t},\n\t\t\tvariationId: {\n\t\t\t\tkey: \"variation_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tversion: {\n\t\t\t\tkey: \"response_created_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tonboardingBuilder: {\n\t\t\t\tkey: \"onboarding_builder\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyOnboardingBuilderCoder()\n\t\t\t},\n\t\t\tpayloadData: {\n\t\t\t\tkey: \"payload_data\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\trequestLocale: {\n\t\t\t\tkey: \"request_locale\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n\tdecode(data) {\n\t\tconst codablePart = super.decode(data);\n\t\treturn {\n\t\t\t...codablePart,\n\t\t\thasViewConfiguration: codablePart.onboardingBuilder !== void 0\n\t\t};\n\t}\n\tencode(data) {\n\t\tconst { hasViewConfiguration,...codablePart } = data;\n\t\treturn super.encode(codablePart);\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-paywall-builder.ts\nvar AdaptyPaywallBuilderCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tid: {\n\t\t\t\tkey: \"paywall_builder_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tlang: {\n\t\t\t\tkey: \"lang\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-subscription-offer-identifier.ts\nvar AdaptySubscriptionOfferIdCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\ttype: {\n\t\t\t\tkey: \"type\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tid: {\n\t\t\t\tkey: \"id\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/array.ts\nvar ArrayCoder = class {\n\tconstructor(coderFactory) {\n\t\tthis.coderFactory = coderFactory;\n\t}\n\tdecode(input) {\n\t\tconst coder = this.coderFactory();\n\t\treturn input.map((item) => coder.decode(item));\n\t}\n\tencode(value) {\n\t\tconst coder = this.coderFactory();\n\t\treturn value.map((item) => coder.encode(item));\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-subscription-offer.ts\nvar AdaptySubscriptionOfferCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tidentifier: {\n\t\t\t\tkey: \"offer_identifier\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptySubscriptionOfferIdCoder()\n\t\t\t},\n\t\t\tphases: {\n\t\t\t\tkey: \"phases\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"array\",\n\t\t\t\tconverter: new ArrayCoder(() => new AdaptyDiscountPhaseCoder())\n\t\t\t},\n\t\t\tandroid: { offerTags: {\n\t\t\t\tkey: \"offer_tags\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"array\"\n\t\t\t} }\n\t\t};\n\t}\n\tdecode(data) {\n\t\tconst baseResult = super.decode(data);\n\t\tif (!data.offer_tags) {\n\t\t\tconst { android,...partialData } = baseResult;\n\t\t\treturn partialData;\n\t\t}\n\t\treturn baseResult;\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-subscription-details.ts\nvar AdaptySubscriptionDetailsCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tsubscriptionPeriod: {\n\t\t\t\tkey: \"period\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptySubscriptionPeriodCoder()\n\t\t\t},\n\t\t\tlocalizedSubscriptionPeriod: {\n\t\t\t\tkey: \"localized_period\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\toffer: {\n\t\t\t\tkey: \"offer\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptySubscriptionOfferCoder()\n\t\t\t},\n\t\t\tios: { subscriptionGroupIdentifier: {\n\t\t\t\tkey: \"group_identifier\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t} },\n\t\t\tandroid: {\n\t\t\t\tbasePlanId: {\n\t\t\t\t\tkey: \"base_plan_id\",\n\t\t\t\t\trequired: true,\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t},\n\t\t\t\trenewalType: {\n\t\t\t\t\tkey: \"renewal_type\",\n\t\t\t\t\trequired: false,\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n\tdecode(data) {\n\t\tconst baseResult = super.decode(data);\n\t\tconst propToRemove = data.base_plan_id ? \"ios\" : \"android\";\n\t\tconst { [propToRemove]: _,...partialData } = baseResult;\n\t\treturn partialData;\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-paywall-product.ts\nvar AdaptyPaywallProductCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tvendorProductId: {\n\t\t\t\tkey: \"vendor_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tadaptyId: {\n\t\t\t\tkey: \"adapty_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tpaywallProductIndex: {\n\t\t\t\tkey: \"paywall_product_index\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tlocalizedDescription: {\n\t\t\t\tkey: \"localized_description\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tlocalizedTitle: {\n\t\t\t\tkey: \"localized_title\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tregionCode: {\n\t\t\t\tkey: \"region_code\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tvariationId: {\n\t\t\t\tkey: \"paywall_variation_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tpaywallABTestName: {\n\t\t\t\tkey: \"paywall_ab_test_name\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tpaywallName: {\n\t\t\t\tkey: \"paywall_name\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\taccessLevelId: {\n\t\t\t\tkey: \"access_level_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tproductType: {\n\t\t\t\tkey: \"product_type\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tprice: {\n\t\t\t\tkey: \"price\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyPriceCoder()\n\t\t\t},\n\t\t\twebPurchaseUrl: {\n\t\t\t\tkey: \"web_purchase_url\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tpayloadData: {\n\t\t\t\tkey: \"payload_data\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tsubscription: {\n\t\t\t\tkey: \"subscription\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptySubscriptionDetailsCoder()\n\t\t\t},\n\t\t\tios: { isFamilyShareable: {\n\t\t\t\tkey: \"is_family_shareable\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t} }\n\t\t};\n\t}\n\tgetInput(data) {\n\t\treturn {\n\t\t\tadapty_product_id: data.adapty_product_id,\n\t\t\taccess_level_id: data.access_level_id,\n\t\t\tproduct_type: data.product_type,\n\t\t\tpaywall_product_index: data.paywall_product_index,\n\t\t\tpaywall_ab_test_name: data.paywall_ab_test_name,\n\t\t\tpayload_data: data.payload_data,\n\t\t\tpaywall_name: data.paywall_name,\n\t\t\tpaywall_variation_id: data.paywall_variation_id,\n\t\t\tsubscription_offer_identifier: data.subscription?.offer?.offer_identifier,\n\t\t\tvendor_product_id: data.vendor_product_id\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/product-reference.ts\nvar ProductReferenceCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tvendorId: {\n\t\t\t\tkey: \"vendor_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tadaptyId: {\n\t\t\t\tkey: \"adapty_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\taccessLevelId: {\n\t\t\t\tkey: \"access_level_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tproductType: {\n\t\t\t\tkey: \"product_type\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tios: {\n\t\t\t\tpromotionalOfferId: {\n\t\t\t\t\tkey: \"promotional_offer_id\",\n\t\t\t\t\trequired: false,\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t},\n\t\t\t\twinBackOfferId: {\n\t\t\t\t\tkey: \"win_back_offer_id\",\n\t\t\t\t\trequired: false,\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t}\n\t\t\t},\n\t\t\tandroid: {\n\t\t\t\tbasePlanId: {\n\t\t\t\t\tkey: \"base_plan_id\",\n\t\t\t\t\trequired: false,\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t},\n\t\t\t\tofferId: {\n\t\t\t\t\tkey: \"offer_id\",\n\t\t\t\t\trequired: false,\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-paywall.ts\nvar AdaptyPaywallCoder = class extends Coder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tplacement: {\n\t\t\t\tkey: \"placement\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyPlacementCoder()\n\t\t\t},\n\t\t\tid: {\n\t\t\t\tkey: \"paywall_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tname: {\n\t\t\t\tkey: \"paywall_name\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tproducts: {\n\t\t\t\tkey: \"products\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"array\",\n\t\t\t\tconverter: new ArrayCoder(() => new ProductReferenceCoder())\n\t\t\t},\n\t\t\tremoteConfig: {\n\t\t\t\tkey: \"remote_config\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyRemoteConfigCoder()\n\t\t\t},\n\t\t\tvariationId: {\n\t\t\t\tkey: \"variation_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tversion: {\n\t\t\t\tkey: \"response_created_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tpaywallBuilder: {\n\t\t\t\tkey: \"paywall_builder\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new AdaptyPaywallBuilderCoder()\n\t\t\t},\n\t\t\twebPurchaseUrl: {\n\t\t\t\tkey: \"web_purchase_url\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tpayloadData: {\n\t\t\t\tkey: \"payload_data\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\trequestLocale: {\n\t\t\t\tkey: \"request_locale\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n\tdecode(data) {\n\t\tconst codablePart = super.decode(data);\n\t\treturn {\n\t\t\t...codablePart,\n\t\t\thasViewConfiguration: codablePart.paywallBuilder !== void 0,\n\t\t\tproductIdentifiers: codablePart.products.map((product) => ({\n\t\t\t\tvendorProductId: product.vendorId,\n\t\t\t\tadaptyProductId: product.adaptyId,\n\t\t\t\tbasePlanId: product.android?.basePlanId\n\t\t\t}))\n\t\t};\n\t}\n\tencode(data) {\n\t\tconst { hasViewConfiguration, productIdentifiers,...codablePart } = data;\n\t\treturn super.encode(codablePart);\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-profile-parameters.ts\nvar AdaptyProfileParametersCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tfirstName: {\n\t\t\t\tkey: \"first_name\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tlastName: {\n\t\t\t\tkey: \"last_name\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tgender: {\n\t\t\t\tkey: \"gender\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tbirthday: {\n\t\t\t\tkey: \"birthday\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\temail: {\n\t\t\t\tkey: \"email\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tphoneNumber: {\n\t\t\t\tkey: \"phone_number\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tappTrackingTransparencyStatus: {\n\t\t\t\tkey: \"att_status\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\tcodableCustomAttributes: {\n\t\t\t\tkey: \"custom_attributes\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\"\n\t\t\t},\n\t\t\tanalyticsDisabled: {\n\t\t\t\tkey: \"analytics_disabled\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"boolean\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-subscription.ts\nvar AdaptySubscriptionCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tisActive: {\n\t\t\t\tkey: \"is_active\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisLifetime: {\n\t\t\t\tkey: \"is_lifetime\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tvendorProductId: {\n\t\t\t\tkey: \"vendor_product_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tstore: {\n\t\t\t\tkey: \"store\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tvendorTransactionId: {\n\t\t\t\tkey: \"vendor_transaction_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tvendorOriginalTransactionId: {\n\t\t\t\tkey: \"vendor_original_transaction_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tactivatedAt: {\n\t\t\t\tkey: \"activated_at\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\twillRenew: {\n\t\t\t\tkey: \"will_renew\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisInGracePeriod: {\n\t\t\t\tkey: \"is_in_grace_period\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisRefund: {\n\t\t\t\tkey: \"is_refund\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\tisSandbox: {\n\t\t\t\tkey: \"is_sandbox\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"boolean\"\n\t\t\t},\n\t\t\trenewedAt: {\n\t\t\t\tkey: \"renewed_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\texpiresAt: {\n\t\t\t\tkey: \"expires_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tstartsAt: {\n\t\t\t\tkey: \"starts_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tunsubscribedAt: {\n\t\t\t\tkey: \"unsubscribed_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tbillingIssueDetectedAt: {\n\t\t\t\tkey: \"billing_issue_detected_at\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\",\n\t\t\t\tconverter: new DateCoder()\n\t\t\t},\n\t\t\tactiveIntroductoryOfferType: {\n\t\t\t\tkey: \"active_introductory_offer_type\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tactivePromotionalOfferType: {\n\t\t\t\tkey: \"active_promotional_offer_type\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tactivePromotionalOfferId: {\n\t\t\t\tkey: \"active_promotional_offer_id\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tcancellationReason: {\n\t\t\t\tkey: \"cancellation_reason\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/hashmap.ts\nvar HashmapCoder = class {\n\tconstructor(coder) {\n\t\tthis.coder = void 0;\n\t\tthis.coder = coder;\n\t}\n\tdecode(input) {\n\t\tconst result = {};\n\t\tObject.keys(input).forEach((key) => {\n\t\t\tconst property = input[key];\n\t\t\tresult[key] = this.coder?.decode(property) ?? property;\n\t\t});\n\t\treturn result;\n\t}\n\tencode(value) {\n\t\tconst result = {};\n\t\tObject.keys(value).forEach((key) => {\n\t\t\tconst property = value[key];\n\t\t\tresult[key] = this.coder?.encode(property) ?? property;\n\t\t});\n\t\treturn result;\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-profile.ts\nvar AdaptyProfileCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\taccessLevels: {\n\t\t\t\tkey: \"paid_access_levels\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new HashmapCoder(new AdaptyAccessLevelCoder())\n\t\t\t},\n\t\t\tcustomAttributes: {\n\t\t\t\tkey: \"custom_attributes\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\"\n\t\t\t},\n\t\t\tcustomerUserId: {\n\t\t\t\tkey: \"customer_user_id\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tnonSubscriptions: {\n\t\t\t\tkey: \"non_subscriptions\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new HashmapCoder(new ArrayCoder(() => new AdaptyNonSubscriptionCoder()))\n\t\t\t},\n\t\t\tprofileId: {\n\t\t\t\tkey: \"profile_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tsubscriptions: {\n\t\t\t\tkey: \"subscriptions\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"object\",\n\t\t\t\tconverter: new HashmapCoder(new AdaptySubscriptionCoder())\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-purchase-params.ts\nfunction isDeprecatedType(data) {\n\treturn typeof data === \"object\" && data !== null && \"android\" in data && typeof data.android === \"object\" && data.android !== null && \"oldSubVendorProductId\" in data.android && \"prorationMode\" in data.android;\n}\nvar AdaptyPurchaseParamsCoder = class {\n\tconstructor(platform) {\n\t\tthis.platform = platform;\n\t}\n\tencode(data) {\n\t\tif (this.platform.OS !== \"android\") return {};\n\t\tconst purchaseParams = {};\n\t\tif (isDeprecatedType(data)) {\n\t\t\tif (data.android) {\n\t\t\t\tpurchaseParams[\"subscription_update_params\"] = {\n\t\t\t\t\treplacement_mode: data.android.prorationMode,\n\t\t\t\t\told_sub_vendor_product_id: data.android.oldSubVendorProductId\n\t\t\t\t};\n\t\t\t\tif (data.android.isOfferPersonalized) purchaseParams[\"is_offer_personalized\"] = data.android.isOfferPersonalized;\n\t\t\t}\n\t\t\treturn purchaseParams;\n\t\t}\n\t\tif (data.android) {\n\t\t\tif (data.android.subscriptionUpdateParams) purchaseParams[\"subscription_update_params\"] = {\n\t\t\t\treplacement_mode: data.android.subscriptionUpdateParams.prorationMode,\n\t\t\t\told_sub_vendor_product_id: data.android.subscriptionUpdateParams.oldSubVendorProductId\n\t\t\t};\n\t\t\tif (data.android.isOfferPersonalized !== void 0) purchaseParams[\"is_offer_personalized\"] = data.android.isOfferPersonalized;\n\t\t}\n\t\treturn purchaseParams;\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-purchase-result.ts\nvar AdaptyPurchaseResultCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = { type: {\n\t\t\tkey: \"type\",\n\t\t\trequired: true,\n\t\t\ttype: \"string\"\n\t\t} };\n\t}\n\tdecode(data) {\n\t\tconst baseResult = super.decode(data);\n\t\tif (baseResult.type === \"success\") {\n\t\t\tif (!data.profile) throw new Error(\"Profile is required for success type of purchase result\");\n\t\t\treturn {\n\t\t\t\t...baseResult,\n\t\t\t\tprofile: new AdaptyProfileCoder(this.platform).decode(data.profile),\n\t\t\t\t...this.platform.OS === \"ios\" && data.apple_jws_transaction ? { ios: { jwsTransaction: data.apple_jws_transaction } } : {},\n\t\t\t\t...this.platform.OS === \"android\" && data.google_purchase_token ? { android: { purchaseToken: data.google_purchase_token } } : {}\n\t\t\t};\n\t\t}\n\t\treturn baseResult;\n\t}\n\tencode(data) {\n\t\tconst { type } = data;\n\t\tif (type === \"success\") {\n\t\t\tif (!(\"profile\" in data)) throw new Error(\"Profile is required for success type of purchase result\");\n\t\t\treturn {\n\t\t\t\ttype: \"success\",\n\t\t\t\tprofile: new AdaptyProfileCoder(this.platform).encode(data.profile),\n\t\t\t\t...this.platform.OS === \"ios\" && data.ios?.jwsTransaction ? { apple_jws_transaction: data.ios.jwsTransaction } : {},\n\t\t\t\t...this.platform.OS === \"android\" && data.android?.purchaseToken ? { google_purchase_token: data.android.purchaseToken } : {}\n\t\t\t};\n\t\t}\n\t\treturn super.encode({ type });\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-ui-dialog-config.ts\nvar AdaptyUiDialogConfigCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tprimaryActionTitle: {\n\t\t\t\tkey: \"default_action_title\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tsecondaryActionTitle: {\n\t\t\t\tkey: \"secondary_action_title\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\ttitle: {\n\t\t\t\tkey: \"title\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tcontent: {\n\t\t\t\tkey: \"content\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-ui-create-onboarding-view-params.ts\nvar AdaptyUICreateOnboardingViewParamsCoder = class {\n\tencode(data) {\n\t\tconst result = {};\n\t\tif (data.externalUrlsPresentation) result.external_urls_presentation = data.externalUrlsPresentation;\n\t\treturn result;\n\t}\n};\n\n//#endregion\n//#region src/coders/utils.ts\nconst formatDateUTC = (date) => {\n\tconst pad = (num, digits = 2) => {\n\t\tconst str = num.toString();\n\t\tconst paddingLength = digits - str.length;\n\t\treturn paddingLength > 0 ? \"0\".repeat(paddingLength) + str : str;\n\t};\n\tconst year = date.getUTCFullYear();\n\tconst month = pad(date.getUTCMonth() + 1);\n\tconst day = pad(date.getUTCDate());\n\tconst hours = pad(date.getUTCHours());\n\tconst minutes = pad(date.getUTCMinutes());\n\tconst seconds = pad(date.getUTCSeconds());\n\tconst millis = pad(date.getUTCMilliseconds(), 3);\n\treturn `${year}-${month}-${day}T${hours}:${minutes}:${seconds}.${millis}Z`;\n};\nconst colorToHex = {\n\tfromARGB(value) {\n\t\tconst hex = value.toString(16).padStart(8, \"0\");\n\t\treturn `#${hex.slice(2)}${hex.slice(0, 2)}`;\n\t},\n\tfromRGBA(value) {\n\t\treturn `#${value.toString(16).padStart(8, \"0\")}`;\n\t},\n\tfromRGB(value) {\n\t\treturn `#${value.toString(16).padStart(6, \"0\")}ff`;\n\t}\n};\nconst extractBase64Data = (input) => {\n\tconst commaIndex = input.indexOf(\",\");\n\tif (input.startsWith(\"data:\") && commaIndex !== -1) return input.slice(commaIndex + 1);\n\treturn input;\n};\nconst resolveAssetId = (asset, platformOS) => {\n\tif (\"relativeAssetPath\" in asset) return platformOS === \"android\" ? `${asset.relativeAssetPath}a` : asset.relativeAssetPath;\n\tconst fileLocation = asset.fileLocation;\n\tif (platformOS === \"android\") return \"relativeAssetPath\" in fileLocation.android ? `${fileLocation.android.relativeAssetPath}a` : `${fileLocation.android.rawResName}r`;\n\treturn fileLocation.ios.fileName;\n};\n\n//#endregion\n//#region src/coders/adapty-ui-create-paywall-view-params.ts\nvar AdaptyUICreatePaywallViewParamsCoder = class {\n\tconstructor(platform) {\n\t\tthis.platform = platform;\n\t}\n\tencode(data) {\n\t\tconst result = {};\n\t\tif (data.prefetchProducts !== void 0) result.preload_products = data.prefetchProducts;\n\t\tif (data.loadTimeoutMs !== void 0) result.load_timeout = data.loadTimeoutMs / 1e3;\n\t\tif (data.customTags) result.custom_tags = data.customTags;\n\t\tif (data.customTimers) result.custom_timers = this.encodeCustomTimers(data.customTimers);\n\t\tif (data.customAssets) result.custom_assets = this.encodeCustomAssets(data.customAssets);\n\t\tif (data.productPurchaseParams) result.product_purchase_parameters = this.encodeProductPurchaseParams(data.productPurchaseParams);\n\t\treturn result;\n\t}\n\tencodeCustomTimers(timers) {\n\t\tconst result = {};\n\t\tfor (const key in timers) if (timers.hasOwnProperty(key)) {\n\t\t\tconst date = timers[key];\n\t\t\tif (date instanceof Date) result[key] = formatDateUTC(date);\n\t\t}\n\t\treturn result;\n\t}\n\tencodeCustomAssets(assets) {\n\t\tconst getAssetId = (asset) => {\n\t\t\treturn resolveAssetId(asset, this.platform.OS) || \"\";\n\t\t};\n\t\treturn Object.entries(assets).map(([id, asset]) => {\n\t\t\tswitch (asset.type) {\n\t\t\t\tcase \"image\": return \"base64\" in asset ? {\n\t\t\t\t\tid,\n\t\t\t\t\ttype: \"image\",\n\t\t\t\t\tvalue: extractBase64Data(asset.base64)\n\t\t\t\t} : {\n\t\t\t\t\tid,\n\t\t\t\t\ttype: \"image\",\n\t\t\t\t\tasset_id: getAssetId(asset)\n\t\t\t\t};\n\t\t\t\tcase \"video\": return {\n\t\t\t\t\tid,\n\t\t\t\t\ttype: \"video\",\n\t\t\t\t\tasset_id: getAssetId(asset)\n\t\t\t\t};\n\t\t\t\tcase \"color\":\n\t\t\t\t\tlet value;\n\t\t\t\t\tif (\"argb\" in asset) value = colorToHex.fromARGB(asset.argb);\n\t\t\t\t\telse if (\"rgba\" in asset) value = colorToHex.fromRGBA(asset.rgba);\n\t\t\t\t\telse if (\"rgb\" in asset) value = colorToHex.fromRGB(asset.rgb);\n\t\t\t\t\telse return void 0;\n\t\t\t\t\treturn {\n\t\t\t\t\t\tid,\n\t\t\t\t\t\ttype: \"color\",\n\t\t\t\t\t\tvalue\n\t\t\t\t\t};\n\t\t\t\tcase \"linear-gradient\":\n\t\t\t\t\tconst { values, points = {} } = asset;\n\t\t\t\t\tconst { x0 = 0, y0 = 0, x1 = 1, y1 = 0 } = points;\n\t\t\t\t\tconst colorStops = values.map(({ p,...colorInput }) => {\n\t\t\t\t\t\tlet color;\n\t\t\t\t\t\tif (\"argb\" in colorInput) color = colorToHex.fromARGB(colorInput.argb);\n\t\t\t\t\t\telse if (\"rgba\" in colorInput) color = colorToHex.fromRGBA(colorInput.rgba);\n\t\t\t\t\t\telse if (\"rgb\" in colorInput) color = colorToHex.fromRGB(colorInput.rgb);\n\t\t\t\t\t\telse return void 0;\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tcolor,\n\t\t\t\t\t\t\tp\n\t\t\t\t\t\t};\n\t\t\t\t\t}).filter((v) => v !== void 0);\n\t\t\t\t\tif (colorStops.length !== values.length) return void 0;\n\t\t\t\t\treturn {\n\t\t\t\t\t\tid,\n\t\t\t\t\t\ttype: \"linear-gradient\",\n\t\t\t\t\t\tvalues: colorStops,\n\t\t\t\t\t\tpoints: {\n\t\t\t\t\t\t\tx0,\n\t\t\t\t\t\t\ty0,\n\t\t\t\t\t\t\tx1,\n\t\t\t\t\t\t\ty1\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\tdefault: return void 0;\n\t\t\t}\n\t\t}).filter((item) => item !== void 0);\n\t}\n\tencodeProductPurchaseParams(params) {\n\t\tif (!params) return {};\n\t\tconst purchaseParamsCoder = new AdaptyPurchaseParamsCoder(this.platform);\n\t\treturn Object.fromEntries(params.map(({ productId, params: params$1 }) => [productId.adaptyProductId, purchaseParamsCoder.encode(params$1)]));\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-ui-onboarding-meta.ts\nvar AdaptyUiOnboardingMetaCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tonboardingId: {\n\t\t\t\tkey: \"onboarding_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tscreenClientId: {\n\t\t\t\tkey: \"screen_cid\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tscreenIndex: {\n\t\t\t\tkey: \"screen_index\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t},\n\t\t\ttotalScreens: {\n\t\t\t\tkey: \"total_screens\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"number\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-ui-onboarding-state-params.ts\nvar AdaptyUiOnboardingStateParamsCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.properties = {\n\t\t\tid: {\n\t\t\t\tkey: \"id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tvalue: {\n\t\t\t\tkey: \"value\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tlabel: {\n\t\t\t\tkey: \"label\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n};\n\n//#endregion\n//#region src/coders/adapty-ui-onboarding-state-updated-action.ts\nvar AdaptyUiOnboardingStateUpdatedActionCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.paramCoder = new AdaptyUiOnboardingStateParamsCoder();\n\t\tthis.properties = {\n\t\t\telementId: {\n\t\t\t\tkey: \"element_id\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\telementType: {\n\t\t\t\tkey: \"element_type\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n\tdecode(data) {\n\t\tconst base = super.decode(data);\n\t\tconst { elementType } = base;\n\t\tswitch (elementType) {\n\t\t\tcase \"select\": return {\n\t\t\t\t...base,\n\t\t\t\telementType: \"select\",\n\t\t\t\tvalue: this.paramCoder.decode(data.value)\n\t\t\t};\n\t\t\tcase \"multi_select\": return {\n\t\t\t\t...base,\n\t\t\t\telementType: \"multi_select\",\n\t\t\t\tvalue: Array.isArray(data.value) ? data.value.map((v) => this.paramCoder.decode(v)) : []\n\t\t\t};\n\t\t\tcase \"input\": return {\n\t\t\t\t...base,\n\t\t\t\telementType: \"input\",\n\t\t\t\tvalue: data.value\n\t\t\t};\n\t\t\tcase \"date_picker\": return {\n\t\t\t\t...base,\n\t\t\t\telementType: \"date_picker\",\n\t\t\t\tvalue: data.value\n\t\t\t};\n\t\t\tdefault: throw new Error(`Unknown element_type: ${elementType}`);\n\t\t}\n\t}\n\tencode(data) {\n\t\tconst base = super.encode(data);\n\t\tconst { elementType } = data;\n\t\tswitch (elementType) {\n\t\t\tcase \"select\": return {\n\t\t\t\t...base,\n\t\t\t\telement_type: \"select\",\n\t\t\t\tvalue: this.paramCoder.encode(data.value)\n\t\t\t};\n\t\t\tcase \"multi_select\": return {\n\t\t\t\t...base,\n\t\t\t\telement_type: \"multi_select\",\n\t\t\t\tvalue: data.value.map((v) => this.paramCoder.encode(v))\n\t\t\t};\n\t\t\tcase \"input\": return {\n\t\t\t\t...base,\n\t\t\t\telement_type: \"input\",\n\t\t\t\tvalue: data.value\n\t\t\t};\n\t\t\tcase \"date_picker\": return {\n\t\t\t\t...base,\n\t\t\t\telement_type: \"date_picker\",\n\t\t\t\tvalue: data.value\n\t\t\t};\n\t\t\tdefault: throw new Error(`Unknown elementType: ${elementType}`);\n\t\t}\n\t}\n};\n\n//#endregion\n//#region src/coders/bridge-error.ts\nvar BridgeErrorCoder = class extends SimpleCoder {\n\tconstructor(..._args) {\n\t\tsuper(..._args);\n\t\tthis.type = \"error\";\n\t\tthis.properties = {\n\t\t\terrorType: {\n\t\t\t\tkey: \"error_type\",\n\t\t\t\trequired: true,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tname: {\n\t\t\t\tkey: \"name\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\ttype: {\n\t\t\t\tkey: \"type\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tunderlyingError: {\n\t\t\t\tkey: \"parent_error\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t},\n\t\t\tdescription: {\n\t\t\t\tkey: \"description\",\n\t\t\t\trequired: false,\n\t\t\t\ttype: \"string\"\n\t\t\t}\n\t\t};\n\t}\n\tgetError(data) {\n\t\tswitch (data.errorType) {\n\t\t\tcase \"missingRequiredArgument\": return new AdaptyError({\n\t\t\t\tadaptyCode: 3001,\n\t\t\t\tmessage: `Required parameter \"${data.name} was not passed to a native module\"`\n\t\t\t});\n\t\t\tcase \"typeMismatch\": return new AdaptyError({\n\t\t\t\tadaptyCode: 3001,\n\t\t\t\tmessage: `Passed parameter \"${data.name}\" has invalid type. Expected type: ${data.type}\"`\n\t\t\t});\n\t\t\tcase \"encodingFailed\": return new AdaptyError({\n\t\t\t\tadaptyCode: 2009,\n\t\t\t\tmessage: `Bridge layer failed to encode response. Bridge error: ${JSON.stringify(data.underlyingError ?? {})}\"`\n\t\t\t});\n\t\t\tcase \"wrongParam\":\n\t\t\tcase \"WRONG_PARAMETER\": return new AdaptyError({\n\t\t\t\tadaptyCode: 3001,\n\t\t\t\tmessage: data.name ?? `Wrong parameter. Bridge error: ${JSON.stringify(data.underlyingError ?? {})}\"`\n\t\t\t});\n\t\t\tcase \"methodNotImplemented\": return new AdaptyError({\n\t\t\t\tadaptyCode: 2003,\n\t\t\t\tmessage: \"Requested bridge handle not found\"\n\t\t\t});\n\t\t\tcase \"unsupportedIosVersion\": return new AdaptyError({\n\t\t\t\tadaptyCode: 2003,\n\t\t\t\tmessage: \"Unsupported iOS version\"\n\t\t\t});\n\t\t\tcase \"unexpectedError\":\n\t\t\tdefault: return new AdaptyError({\n\t\t\t\tadaptyCode: 0,\n\t\t\t\tmessage: `Unexpected error occurred: ${JSON.stringify(data.underlyingError ?? {})}`\n\t\t\t});\n\t\t}\n\t}\n};\n\n//#endregion\n//#region src/coders/factory.ts\n/**\n* Factory for creating coders with injected dependencies\n*/\nvar CoderFactory = class {\n\tconstructor(deps) {\n\t\tthis.deps = deps;\n\t}\n\tcreateAccessLevelCoder() {\n\t\treturn new AdaptyAccessLevelCoder(this.deps.platform);\n\t}\n\tcreateConfigurationCoder() {\n\t\treturn new AdaptyConfigurationCoder(this.deps.platform, this.deps.sdkMetadata);\n\t}\n\tcreateDateCoder() {\n\t\treturn new DateCoder();\n\t}\n\tcreateDiscountPhaseCoder() {\n\t\treturn new AdaptyDiscountPhaseCoder(this.deps.platform);\n\t}\n\tcreatePurchaseParamsCoder() {\n\t\treturn new AdaptyPurchaseParamsCoder(this.deps.platform);\n\t}\n\tcreatePurchaseResultCoder() {\n\t\treturn new AdaptyPurchaseResultCoder(this.deps.platform);\n\t}\n\tcreateIdentifyParamsCoder() {\n\t\treturn new AdaptyIdentifyParamsCoder(this.deps.platform);\n\t}\n\tcreateInstallationDetailsCoder() {\n\t\treturn new AdaptyInstallationDetailsCoder();\n\t}\n\tcreateInstallationStatusCoder() {\n\t\treturn new AdaptyInstallationStatusCoder();\n\t}\n\tcreateJsonCoder() {\n\t\treturn new JSONCoder();\n\t}\n\tcreateNativeErrorCoder() {\n\t\treturn new AdaptyNativeErrorCoder(this.deps.platform);\n\t}\n\tcreateNonSubscriptionCoder() {\n\t\treturn new AdaptyNonSubscriptionCoder(this.deps.platform);\n\t}\n\tcreateOnboardingBuilderCoder() {\n\t\treturn new AdaptyOnboardingBuilderCoder(this.deps.platform);\n\t}\n\tcreateOnboardingCoder() {\n\t\treturn new AdaptyOnboardingCoder(this.deps.platform);\n\t}\n\tcreatePaywallBuilderCoder() {\n\t\treturn new AdaptyPaywallBuilderCoder(this.deps.platform);\n\t}\n\tcreatePaywallCoder() {\n\t\treturn new AdaptyPaywallCoder(this.deps.platform);\n\t}\n\tcreatePaywallProductCoder() {\n\t\treturn new AdaptyPaywallProductCoder(this.deps.platform);\n\t}\n\tcreatePlacementCoder() {\n\t\treturn new AdaptyPlacementCoder(this.deps.platform);\n\t}\n\tcreatePriceCoder() {\n\t\treturn new AdaptyPriceCoder(this.deps.platform);\n\t}\n\tcreateProductReferenceCoder() {\n\t\treturn new ProductReferenceCoder(this.deps.platform);\n\t}\n\tcreateProfileCoder() {\n\t\treturn new AdaptyProfileCoder(this.deps.platform);\n\t}\n\tcreateProfileParametersCoder() {\n\t\treturn new AdaptyProfileParametersCoder(this.deps.platform);\n\t}\n\tcreateRemoteConfigCoder() {\n\t\treturn new AdaptyRemoteConfigCoder(this.deps.platform);\n\t}\n\tcreateSubscriptionCoder() {\n\t\treturn new AdaptySubscriptionCoder(this.deps.platform);\n\t}\n\tcreateSubscriptionDetailsCoder() {\n\t\treturn new AdaptySubscriptionDetailsCoder(this.deps.platform);\n\t}\n\tcreateSubscriptionOfferCoder() {\n\t\treturn new AdaptySubscriptionOfferCoder(this.deps.platform);\n\t}\n\tcreateSubscriptionOfferIdCoder() {\n\t\treturn new AdaptySubscriptionOfferIdCoder(this.deps.platform);\n\t}\n\tcreateSubscriptionPeriodCoder() {\n\t\treturn new AdaptySubscriptionPeriodCoder(this.deps.platform);\n\t}\n\tcreateUiCreateOnboardingViewParamsCoder() {\n\t\treturn new AdaptyUICreateOnboardingViewParamsCoder();\n\t}\n\tcreateUiCreatePaywallViewParamsCoder() {\n\t\treturn new AdaptyUICreatePaywallViewParamsCoder(this.deps.platform);\n\t}\n\tcreateUiDialogConfigCoder() {\n\t\treturn new AdaptyUiDialogConfigCoder(this.deps.platform);\n\t}\n\tcreateUiMediaCacheCoder() {\n\t\treturn new AdaptyUiMediaCacheCoder(this.deps.platform);\n\t}\n\tcreateUiOnboardingMetaCoder() {\n\t\treturn new AdaptyUiOnboardingMetaCoder(this.deps.platform);\n\t}\n\tcreateUiOnboardingStateParamsCoder() {\n\t\treturn new AdaptyUiOnboardingStateParamsCoder(this.deps.platform);\n\t}\n\tcreateUiOnboardingStateUpdatedActionCoder() {\n\t\treturn new AdaptyUiOnboardingStateUpdatedActionCoder(this.deps.platform);\n\t}\n\tcreateBridgeErrorCoder() {\n\t\treturn new BridgeErrorCoder(this.deps.platform);\n\t}\n\tcreateArrayCoder(coderFactory) {\n\t\treturn new ArrayCoder(coderFactory);\n\t}\n\tcreatePaywallProductArrayCoder() {\n\t\treturn new ArrayCoder(() => this.createPaywallProductCoder());\n\t}\n\tcreateHashmapCoder(coder) {\n\t\treturn new HashmapCoder(coder);\n\t}\n};\n\n//#endregion\n//#region src/types/index.ts\nconst VendorStore = Object.freeze({\n\tAppStore: \"app_store\",\n\tPlayStore: \"play_store\",\n\tAdapty: \"adapty\"\n});\nconst OfferType = Object.freeze({\n\tFreeTrial: \"free_trial\",\n\tPayAsYouGo: \"pay_as_you_go\",\n\tPayUpFront: \"pay_up_front\"\n});\nconst CancellationReason = Object.freeze({\n\tVolountarilyCancelled: \"voluntarily_cancelled\",\n\tBillingError: \"billing_error\",\n\tRefund: \"refund\",\n\tPriceIncrease: \"price_increase\",\n\tProductWasNotAvailable: \"product_was_not_available\",\n\tUnknown: \"unknown\"\n});\nconst Gender = Object.freeze({\n\tFemale: \"f\",\n\tMale: \"m\",\n\tOther: \"o\"\n});\nconst AppTrackingTransparencyStatus = Object.freeze({\n\tNotDetermined: 0,\n\tRestricted: 1,\n\tDenied: 2,\n\tAuthorized: 3,\n\tUnknown: 4\n});\nconst ProductPeriod = Object.freeze({\n\tDay: \"day\",\n\tWeek: \"week\",\n\tMonth: \"month\",\n\tYear: \"year\"\n});\nconst WebPresentation = Object.freeze({\n\tBrowserOutApp: \"browser_out_app\",\n\tBrowserInApp: \"browser_in_app\"\n});\nconst RefundPreference = Object.freeze({\n\tNoPreference: \"no_preference\",\n\tGrant: \"grant\",\n\tDecline: \"decline\"\n});\n\n//#endregion\n//#region src/types/bridge.ts\n/**\n* Valid list of callable bridge handlers\n* Must be the same as\n* - iOS RNAConstants.MethodName\n* @internal\n*/\nconst MethodNames = [\n\t\"activate\",\n\t\"adapty_ui_activate\",\n\t\"adapty_ui_create_paywall_view\",\n\t\"adapty_ui_dismiss_paywall_view\",\n\t\"adapty_ui_present_paywall_view\",\n\t\"adapty_ui_show_dialog\",\n\t\"adapty_ui_create_onboarding_view\",\n\t\"adapty_ui_dismiss_onboarding_view\",\n\t\"adapty_ui_present_onboarding_view\",\n\t\"create_web_paywall_url\",\n\t\"get_current_installation_status\",\n\t\"is_activated\",\n\t\"get_paywall\",\n\t\"get_paywall_for_default_audience\",\n\t\"get_paywall_products\",\n\t\"get_onboarding\",\n\t\"get_onboarding_for_default_audience\",\n\t\"get_profile\",\n\t\"identify\",\n\t\"log_show_paywall\",\n\t\"logout\",\n\t\"make_purchase\",\n\t\"open_web_paywall\",\n\t\"present_code_redemption_sheet\",\n\t\"report_transaction\",\n\t\"restore_purchases\",\n\t\"set_fallback\",\n\t\"set_integration_identifiers\",\n\t\"set_log_level\",\n\t\"update_attribution_data\",\n\t\"update_collecting_refund_data_consent\",\n\t\"update_profile\",\n\t\"update_refund_preference\"\n];\n\n//#endregion\n//#region src/types/paywall-events.ts\nconst PaywallEventId = {\n\tDidAppear: \"paywall_view_did_appear\",\n\tDidDisappear: \"paywall_view_did_disappear\",\n\tDidPerformAction: \"paywall_view_did_perform_action\",\n\tDidSelectProduct: \"paywall_view_did_select_product\",\n\tDidStartPurchase: \"paywall_view_did_start_purchase\",\n\tDidFinishPurchase: \"paywall_view_did_finish_purchase\",\n\tDidFailPurchase: \"paywall_view_did_fail_purchase\",\n\tDidStartRestore: \"paywall_view_did_start_restore\",\n\tDidFinishRestore: \"paywall_view_did_finish_restore\",\n\tDidFailRestore: \"paywall_view_did_fail_restore\",\n\tDidFailRendering: \"paywall_view_did_fail_rendering\",\n\tDidFailLoadingProducts: \"paywall_view_did_fail_loading_products\",\n\tDidFinishWebPaymentNavigation: \"paywall_view_did_finish_web_payment_navigation\"\n};\n\n//#endregion\n//#region src/types/onboarding-events.ts\nconst OnboardingEventId = {\n\tClose: \"onboarding_on_close_action\",\n\tCustom: \"onboarding_on_custom_action\",\n\tPaywall: \"onboarding_on_paywall_action\",\n\tStateUpdated: \"onboarding_on_state_updated_action\",\n\tFinishedLoading: \"onboarding_did_finish_loading\",\n\tAnalytics: \"onboarding_on_analytics_action\",\n\tError: \"onboarding_did_fail_with_error\"\n};\n\n//#endregion\n//#region src/ui-builder/paywall-event-mapping.ts\n/**\n* Resolves native event to handler name based on event data\n*/\nconst NATIVE_EVENT_RESOLVER = {\n\t[PaywallEventId.DidPerformAction]: (event) => {\n\t\tif (event.id !== PaywallEventId.DidPerformAction) return null;\n\t\tconst actionMap = {\n\t\t\tclose: \"onCloseButtonPress\",\n\t\t\tsystem_back: \"onAndroidSystemBack\",\n\t\t\topen_url: \"onUrlPress\",\n\t\t\tcustom: \"onCustomAction\"\n\t\t};\n\t\treturn actionMap[event.action.type] || null;\n\t},\n\t[PaywallEventId.DidAppear]: () => \"onPaywallShown\",\n\t[PaywallEventId.DidDisappear]: () => \"onPaywallClosed\",\n\t[PaywallEventId.DidSelectProduct]: () => \"onProductSelected\",\n\t[PaywallEventId.DidStartPurchase]: () => \"onPurchaseStarted\",\n\t[PaywallEventId.DidFinishPurchase]: () => \"onPurchaseCompleted\",\n\t[PaywallEventId.DidFailPurchase]: () => \"onPurchaseFailed\",\n\t[PaywallEventId.DidStartRestore]: () => \"onRestoreStarted\",\n\t[PaywallEventId.DidFinishRestore]: () => \"onRestoreCompleted\",\n\t[PaywallEventId.DidFailRestore]: () => \"onRestoreFailed\",\n\t[PaywallEventId.DidFailRendering]: () => \"onRenderingFailed\",\n\t[PaywallEventId.DidFailLoadingProducts]: () => \"onLoadingProductsFailed\",\n\t[PaywallEventId.DidFinishWebPaymentNavigation]: () => \"onWebPaymentNavigationFinished\"\n};\n/**\n* Maps handler name to native event name\n* Used in addListener/addInternalListener to subscribe to correct native event\n*/\nconst HANDLER_TO_NATIVE_EVENT = {\n\tonCloseButtonPress: PaywallEventId.DidPerformAction,\n\tonAndroidSystemBack: PaywallEventId.DidPerformAction,\n\tonUrlPress: PaywallEventId.DidPerformAction,\n\tonCustomAction: PaywallEventId.DidPerformAction,\n\tonPaywallShown: PaywallEventId.DidAppear,\n\tonPaywallClosed: PaywallEventId.DidDisappear,\n\tonProductSelected: PaywallEventId.DidSelectProduct,\n\tonPurchaseStarted: PaywallEventId.DidStartPurchase,\n\tonPurchaseCompleted: PaywallEventId.DidFinishPurchase,\n\tonPurchaseFailed: PaywallEventId.DidFailPurchase,\n\tonRestoreStarted: PaywallEventId.DidStartRestore,\n\tonRestoreCompleted: PaywallEventId.DidFinishRestore,\n\tonRestoreFailed: PaywallEventId.DidFailRestore,\n\tonRenderingFailed: PaywallEventId.DidFailRendering,\n\tonLoadingProductsFailed: PaywallEventId.DidFailLoadingProducts,\n\tonWebPaymentNavigationFinished: PaywallEventId.DidFinishWebPaymentNavigation\n};\nfunction extractPaywallCallbackArgs(handlerName, event) {\n\tswitch (event.id) {\n\t\tcase PaywallEventId.DidSelectProduct: return [event.productId];\n\t\tcase PaywallEventId.DidStartPurchase: return [event.product];\n\t\tcase PaywallEventId.DidFinishPurchase: return [event.purchaseResult, event.product];\n\t\tcase PaywallEventId.DidFailPurchase: return [event.error, event.product];\n\t\tcase PaywallEventId.DidFinishRestore: return [event.profile];\n\t\tcase PaywallEventId.DidFailRestore:\n\t\tcase PaywallEventId.DidFailRendering:\n\t\tcase PaywallEventId.DidFailLoadingProducts: return [event.error];\n\t\tcase PaywallEventId.DidPerformAction:\n\t\t\tif (handlerName === \"onUrlPress\" || handlerName === \"onCustomAction\") return [event.action.value ?? \"\"];\n\t\t\treturn [];\n\t\tcase PaywallEventId.DidFinishWebPaymentNavigation: return [event.product, event.error];\n\t\tcase PaywallEventId.DidAppear:\n\t\tcase PaywallEventId.DidDisappear:\n\t\tcase PaywallEventId.DidStartRestore: return [];\n\t}\n}\n\n//#endregion\n//#region src/ui-builder/onboarding-event-mapping.ts\nconst ONBOARDING_EVENT_MAPPINGS = {\n\tonboarding_on_close_action: [{ handlerName: \"onClose\" }],\n\tonboarding_on_custom_action: [{ handlerName: \"onCustom\" }],\n\tonboarding_on_paywall_action: [{ handlerName: \"onPaywall\" }],\n\tonboarding_on_state_updated_action: [{ handlerName: \"onStateUpdated\" }],\n\tonboarding_did_finish_loading: [{ handlerName: \"onFinishedLoading\" }],\n\tonboarding_on_analytics_action: [{ handlerName: \"onAnalytics\" }],\n\tonboarding_did_fail_with_error: [{ handlerName: \"onError\" }]\n};\nconst HANDLER_TO_EVENT_CONFIG = Object.entries(ONBOARDING_EVENT_MAPPINGS).reduce((acc, [nativeEvent, mappings]) => {\n\tmappings.forEach(({ handlerName }) => {\n\t\tacc[handlerName] = {\n\t\t\tnativeEvent,\n\t\t\thandlerName\n\t\t};\n\t});\n\treturn acc;\n}, {});\nconst NATIVE_EVENT_TO_HANDLERS = Object.entries(HANDLER_TO_EVENT_CONFIG).reduce((acc, [handlerName, config]) => {\n\tif (!acc[config.nativeEvent]) acc[config.nativeEvent] = [];\n\tconst handlers = acc[config.nativeEvent];\n\tif (handlers) handlers.push(handlerName);\n\treturn acc;\n}, {});\nfunction extractOnboardingCallbackArgs(_handlerName, event) {\n\tswitch (event.id) {\n\t\tcase OnboardingEventId.Close:\n\t\tcase OnboardingEventId.Custom:\n\t\tcase OnboardingEventId.Paywall: return [event.actionId, event.meta];\n\t\tcase OnboardingEventId.StateUpdated: return [event.action, event.meta];\n\t\tcase OnboardingEventId.FinishedLoading: return [event.meta];\n\t\tcase OnboardingEventId.Analytics: return [{\n\t\t\t...event.event,\n\t\t\telement_id: event.event.elementId\n\t\t}, event.meta];\n\t\tcase OnboardingEventId.Error: return [event.error];\n\t}\n}\n\n//#endregion\n//#region src/ui-builder/types.ts\nconst AdaptyUiDialogActionType = Object.freeze({\n\tprimary: \"primary\",\n\tsecondary: \"secondary\"\n});\n\n//#endregion\n//#region src/coders/parse.ts\nfunction parseMethodResult(factory, input, resultType, ctx) {\n\tconst log = ctx?.decode({ methodName: \"parseMethodResult\" });\n\tlog?.start(() => ({ input }));\n\tlet obj;\n\ttry {\n\t\tobj = JSON.parse(input);\n\t} catch (error) {\n\t\tconst adaptyError = AdaptyError.failedToDecode(`Failed to decode native response. JSON.parse raised an error: ${error?.message || \"\"}`);\n\t\tlog?.failed(() => ({ error: adaptyError.message }));\n\t\tthrow adaptyError;\n\t}\n\tif (obj.hasOwnProperty(\"success\")) {\n\t\tif ([\n\t\t\t\"String\",\n\t\t\t\"Boolean\",\n\t\t\t\"Void\",\n\t\t\t\"AdaptyUiView\",\n\t\t\t\"AdaptyUiDialogActionType\"\n\t\t].includes(resultType)) return obj.success;\n\t\tconst coder = getCoder(factory, resultType, ctx);\n\t\treturn coder?.decode(obj.success);\n\t} else if (obj.hasOwnProperty(\"error\")) {\n\t\tconst coder = getCoder(factory, \"AdaptyError\", ctx);\n\t\tconst errorData = coder?.decode(obj.error);\n\t\tthrow coder.getError(errorData);\n\t} else {\n\t\tconst adaptyError = AdaptyError.failedToDecode(`Failed to decode native response. Response does not have expected \"success\" or \"error\" property`);\n\t\tlog?.failed(() => ({ error: adaptyError.message }));\n\t\tthrow adaptyError;\n\t}\n}\nfunction parseCommonEvent(factory, event, input, ctx) {\n\tlet obj;\n\ttry {\n\t\tobj = JSON.parse(input);\n\t} catch (error) {\n\t\tthrow AdaptyError.failedToDecode(`Failed to decode event: ${error?.message}`);\n\t}\n\tswitch (event) {\n\t\tcase \"did_load_latest_profile\": return getCoder(factory, \"AdaptyProfile\", ctx)?.decode(obj[\"profile\"]);\n\t\tcase \"on_installation_details_success\": return getCoder(factory, \"AdaptyInstallationDetails\", ctx)?.decode(obj[\"details\"]);\n\t\tcase \"on_installation_details_fail\": return getCoder(factory, \"AdaptyError\", ctx)?.decode(obj[\"error\"]);\n\t\tdefault: return null;\n\t}\n}\nfunction getCoder(factory, type, ctx) {\n\tctx?.stack;\n\tswitch (type) {\n\t\tcase \"AdaptyError\": return factory.createNativeErrorCoder();\n\t\tcase \"AdaptyProfile\": return factory.createProfileCoder();\n\t\tcase \"AdaptyPaywall\": return factory.createPaywallCoder();\n\t\tcase \"AdaptyPaywallProduct\": return factory.createPaywallProductCoder();\n\t\tcase \"AdaptyRemoteConfig\": return factory.createRemoteConfigCoder();\n\t\tcase \"AdaptyPaywallBuilder\": return factory.createPaywallBuilderCoder();\n\t\tcase \"AdaptyOnboarding\": return factory.createOnboardingCoder();\n\t\tcase \"AdaptyPurchaseResult\": return factory.createPurchaseResultCoder();\n\t\tcase \"AdaptyInstallationStatus\": return factory.createInstallationStatusCoder();\n\t\tcase \"AdaptyInstallationDetails\": return factory.createInstallationDetailsCoder();\n\t\tcase \"AdaptyUiOnboardingMeta\": return factory.createUiOnboardingMetaCoder();\n\t\tcase \"AdaptyUiOnboardingStateParams\": return factory.createUiOnboardingStateParamsCoder();\n\t\tcase \"AdaptyUiOnboardingStateUpdatedAction\": return factory.createUiOnboardingStateUpdatedActionCoder();\n\t\tcase \"BridgeError\": return factory.createBridgeErrorCoder();\n\t\tcase \"Array<AdaptyPaywallProduct>\": return factory.createPaywallProductArrayCoder();\n\t\tcase \"String\": return null;\n\t}\n\tthrow AdaptyError.failedToDecode(`Failed to decode native response. Response has unexpected \"type\" property: ${type}`);\n}\n\n//#endregion\n//#region src/coders/parse-paywall.ts\nfunction parsePaywallEvent(factory, input, ctx) {\n\tlet obj;\n\ttry {\n\t\tobj = JSON.parse(input);\n\t} catch (error) {\n\t\tthrow AdaptyError.failedToDecode(`Failed to decode event: ${error?.message}`);\n\t}\n\tconst eventId = obj[\"id\"];\n\tif (!eventId?.startsWith(\"paywall_view_\")) return null;\n\tconst viewObj = obj[\"view\"];\n\tconst view = {\n\t\tid: viewObj[\"id\"],\n\t\tplacementId: viewObj[\"placement_id\"],\n\t\tvariationId: viewObj[\"variation_id\"]\n\t};\n\tswitch (eventId) {\n\t\tcase PaywallEventId.DidAppear: return {\n\t\t\tid: eventId,\n\t\t\tview\n\t\t};\n\t\tcase PaywallEventId.DidDisappear: return {\n\t\t\tid: eventId,\n\t\t\tview\n\t\t};\n\t\tcase PaywallEventId.DidPerformAction: {\n\t\t\tconst actionObj = obj[\"action\"];\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\taction: {\n\t\t\t\t\ttype: actionObj[\"type\"],\n\t\t\t\t\tvalue: actionObj[\"value\"]\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\tcase PaywallEventId.DidSelectProduct: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tproductId: obj[\"product_id\"] ?? \"\"\n\t\t};\n\t\tcase PaywallEventId.DidStartPurchase: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tproduct: getPaywallCoder(factory, \"product\", ctx).decode(obj[\"product\"])\n\t\t};\n\t\tcase PaywallEventId.DidFinishPurchase: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tpurchaseResult: getPaywallCoder(factory, \"purchaseResult\", ctx).decode(obj[\"purchased_result\"]),\n\t\t\tproduct: getPaywallCoder(factory, \"product\", ctx).decode(obj[\"product\"])\n\t\t};\n\t\tcase PaywallEventId.DidFailPurchase: {\n\t\t\tconst errorCoder = getPaywallCoder(factory, \"error\", ctx);\n\t\t\tconst decodedError = errorCoder.decode(obj[\"error\"]);\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\terror: errorCoder.getError(decodedError),\n\t\t\t\tproduct: getPaywallCoder(factory, \"product\", ctx).decode(obj[\"product\"])\n\t\t\t};\n\t\t}\n\t\tcase PaywallEventId.DidStartRestore: return {\n\t\t\tid: eventId,\n\t\t\tview\n\t\t};\n\t\tcase PaywallEventId.DidFinishRestore: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tprofile: getPaywallCoder(factory, \"profile\", ctx).decode(obj[\"profile\"])\n\t\t};\n\t\tcase PaywallEventId.DidFailRestore: {\n\t\t\tconst errorCoder = getPaywallCoder(factory, \"error\", ctx);\n\t\t\tconst decodedError = errorCoder.decode(obj[\"error\"]);\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\terror: errorCoder.getError(decodedError)\n\t\t\t};\n\t\t}\n\t\tcase PaywallEventId.DidFailRendering: {\n\t\t\tconst errorCoder = getPaywallCoder(factory, \"error\", ctx);\n\t\t\tconst decodedError = errorCoder.decode(obj[\"error\"]);\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\terror: errorCoder.getError(decodedError)\n\t\t\t};\n\t\t}\n\t\tcase PaywallEventId.DidFailLoadingProducts: {\n\t\t\tconst errorCoder = getPaywallCoder(factory, \"error\", ctx);\n\t\t\tconst decodedError = errorCoder.decode(obj[\"error\"]);\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\terror: errorCoder.getError(decodedError)\n\t\t\t};\n\t\t}\n\t\tcase PaywallEventId.DidFinishWebPaymentNavigation: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tproduct: obj[\"product\"] ? getPaywallCoder(factory, \"product\", ctx).decode(obj[\"product\"]) : void 0,\n\t\t\terror: obj[\"error\"] ? (() => {\n\t\t\t\tconst errorCoder = getPaywallCoder(factory, \"error\", ctx);\n\t\t\t\tconst decodedError = errorCoder.decode(obj[\"error\"]);\n\t\t\t\treturn errorCoder.getError(decodedError);\n\t\t\t})() : void 0\n\t\t};\n\t\tdefault: return null;\n\t}\n}\nfunction getPaywallCoder(factory, type, _ctx) {\n\tswitch (type) {\n\t\tcase \"product\": return factory.createPaywallProductCoder();\n\t\tcase \"profile\": return factory.createProfileCoder();\n\t\tcase \"purchaseResult\": return factory.createPurchaseResultCoder();\n\t\tcase \"error\": return factory.createNativeErrorCoder();\n\t}\n}\n\n//#endregion\n//#region src/coders/parse-onboarding.ts\nfunction parseOnboardingEvent(factory, input, ctx) {\n\tlet obj;\n\ttry {\n\t\tobj = JSON.parse(input);\n\t} catch (error) {\n\t\tthrow AdaptyError.failedToDecode(`Failed to decode event: ${error?.message}`);\n\t}\n\tconst eventId = obj[\"id\"];\n\tif (!eventId?.startsWith(\"onboarding_\")) return null;\n\tconst viewObj = obj[\"view\"];\n\tconst view = {\n\t\tid: viewObj[\"id\"],\n\t\tplacementId: viewObj[\"placement_id\"],\n\t\tvariationId: viewObj[\"variation_id\"]\n\t};\n\tconst decodeMeta = () => getOnboardingCoder(factory, \"meta\", ctx).decode(obj[\"meta\"]);\n\tswitch (eventId) {\n\t\tcase OnboardingEventId.Close:\n\t\tcase OnboardingEventId.Custom:\n\t\tcase OnboardingEventId.Paywall: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tactionId: obj[\"action_id\"] ?? \"\",\n\t\t\tmeta: decodeMeta()\n\t\t};\n\t\tcase OnboardingEventId.StateUpdated: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\taction: getOnboardingCoder(factory, \"action\", ctx).decode(obj[\"action\"]),\n\t\t\tmeta: decodeMeta()\n\t\t};\n\t\tcase OnboardingEventId.FinishedLoading: return {\n\t\t\tid: eventId,\n\t\t\tview,\n\t\t\tmeta: decodeMeta()\n\t\t};\n\t\tcase OnboardingEventId.Analytics: {\n\t\t\tconst eventObj = obj[\"event\"];\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\tevent: {\n\t\t\t\t\tname: eventObj[\"name\"],\n\t\t\t\t\telementId: eventObj[\"element_id\"],\n\t\t\t\t\treply: eventObj[\"reply\"]\n\t\t\t\t},\n\t\t\t\tmeta: decodeMeta()\n\t\t\t};\n\t\t}\n\t\tcase OnboardingEventId.Error: {\n\t\t\tconst errorCoder = getOnboardingCoder(factory, \"error\", ctx);\n\t\t\tconst decodedError = errorCoder.decode(obj[\"error\"]);\n\t\t\treturn {\n\t\t\t\tid: eventId,\n\t\t\t\tview,\n\t\t\t\terror: errorCoder.getError(decodedError)\n\t\t\t};\n\t\t}\n\t\tdefault: return null;\n\t}\n}\nfunction getOnboardingCoder(factory, type, _ctx) {\n\tswitch (type) {\n\t\tcase \"meta\": return factory.createUiOnboardingMetaCoder();\n\t\tcase \"action\": return factory.createUiOnboardingStateUpdatedActionCoder();\n\t\tcase \"error\": return factory.createNativeErrorCoder();\n\t}\n}\n\n//#endregion\n//#region src/utils/generate-id.ts\n/**\n* Generates a short unique identifier.\n* Format: 12 lowercase alphanumeric characters\n*/\nfunction generateId() {\n\tlet id = \"\";\n\twhile (id.length < 12) id += Math.random().toString(36).slice(2);\n\treturn id.slice(0, 12);\n}\n\n//#endregion\n//#region src/utils/compact-object.ts\n/**\n* Removes undefined properties from an object, preserving the original type structure\n* @param obj - Source object with potentially undefined values\n* @returns Object with undefined values filtered out\n*/\nfunction filterUndefined(obj) {\n\treturn Object.fromEntries(Object.entries(obj).filter(([_, value]) => value !== void 0));\n}\n\n//#endregion\n//#region src/utils/map-values.ts\n/**\n* Maps over values of an object, transforming each value using the provided function.\n*\n* @param obj - The object to map over\n* @param fn - Function to transform each value\n* @returns New object with transformed values\n*/\nfunction mapValues(obj, fn) {\n\treturn Object.fromEntries(Object.entries(obj).map(([key, value]) => [key, fn(value, key)]));\n}\n\n//#endregion\n//#region src/utils/merge-options.ts\n/**\n* Checks if a value is a plain object (not an array, null, Date, etc.)\n*/\nfunction isPlainObject(value) {\n\treturn value !== null && typeof value === \"object\" && !Array.isArray(value) && !(value instanceof Date) && !(value instanceof RegExp) && Object.prototype.toString.call(value) === \"[object Object]\";\n}\n/**\n* Deep merge implementation that replaces arrays and merges objects\n*/\nfunction deepMerge(target, source, seen = new Set()) {\n\tif (source === null || source === void 0) return source;\n\tif (target === null || target === void 0) return source;\n\tif (Array.isArray(source)) return source;\n\tif (Array.isArray(target)) return source;\n\tif (isPlainObject(target) && isPlainObject(source)) {\n\t\tif (seen.has(source) || seen.has(target)) throw new Error(\"Converting circular structure to JSON\");\n\t\tseen.add(source);\n\t\tseen.add(target);\n\t\tconst result = {};\n\t\tconst allKeys = new Set([...Object.keys(target), ...Object.keys(source)]);\n\t\tfor (const key of allKeys) {\n\t\t\tif (key === \"__proto__\" || key === \"constructor\" || key === \"prototype\") continue;\n\t\t\tif (key in source) if (key in target) {\n\t\t\t\tif (seen.has(source[key]) || seen.has(target[key])) throw new Error(\"Converting circular structure to JSON\");\n\t\t\t\tresult[key] = deepMerge(target[key], source[key], seen);\n\t\t\t} else {\n\t\t\t\tif (seen.has(source[key])) throw new Error(\"Converting circular structure to JSON\");\n\t\t\t\tresult[key] = source[key];\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (seen.has(target[key])) throw new Error(\"Converting circular structure to JSON\");\n\t\t\t\tresult[key] = target[key];\n\t\t\t}\n\t\t}\n\t\tseen.delete(source);\n\t\tseen.delete(target);\n\t\treturn result;\n\t}\n\treturn source;\n}\n/**\n* Universal method for merging options with defaults\n* @param options - input options\n* @param defaults - default values\n* @returns merged object with TResult type\n*/\nfunction mergeOptions(options, defaults) {\n\treturn deepMerge(defaults, options);\n}\n\n//#endregion\n//#region src/utils/with-error-context.ts\nfunction toJSON() {\n\treturn {\n\t\tmessage: this.message,\n\t\tname: this.name,\n\t\tstack: this.stack,\n\t\toriginalError: this.originalError instanceof Error ? {\n\t\t\tmessage: this.originalError.message,\n\t\t\tname: this.originalError.name\n\t\t} : this.originalError\n\t};\n}\n/**\n* Wraps a user-provided callback with error context enrichment.\n* Catches exceptions and wraps them with source and handler information.\n*/\nfunction withErrorContext(callback, handlerName, source) {\n\tconst wrapped = function(...args) {\n\t\ttry {\n\t\t\treturn callback.apply(this, args);\n\t\t} catch (error) {\n\t\t\tconst message = `Unhandled exception in user's handler in ${source}.${handlerName}`;\n\t\t\tconst wrappedError = new Error(message);\n\t\t\twrappedError.originalError = error;\n\t\t\twrappedError.toJSON = toJSON;\n\t\t\tthrow wrappedError;\n\t\t}\n\t};\n\treturn wrapped;\n}\n\n//#endregion\nexport { AdaptyAndroidSubscriptionUpdateReplacementMode, AdaptyError, AdaptyUiDialogActionType, AppTrackingTransparencyStatus, CancellationReason, CoderFactory, DefaultLoggerAdapter, DefaultPlatformAdapter, DefaultSdkMetadataAdapter, ErrorCode, ErrorCodeName, FetchPolicy, Gender, HANDLER_TO_EVENT_CONFIG, HANDLER_TO_NATIVE_EVENT, Log, LogContext, LogLevel, LogScope, MethodNames, NATIVE_EVENT_RESOLVER, NATIVE_EVENT_TO_HANDLERS, ONBOARDING_EVENT_MAPPINGS, OfferType, OnboardingEventId, PaywallEventId, ProductPeriod, RefundPreference, VendorStore, WebPresentation, consoleLogSink, extractOnboardingCallbackArgs, extractPaywallCallbackArgs, filterUndefined, generateId, getErrorCode, getErrorPrompt, mapValues, mergeOptions, parseCommonEvent, parseMethodResult, parseOnboardingEvent, parsePaywallEvent, withErrorContext };\n//# sourceMappingURL=index.mjs.map","import { registerPlugin } from '@capacitor/core';\nexport const AdaptyCapacitorPlugin = registerPlugin('AdaptyCapacitorPlugin', {\n web: () => import('./web').then((m) => new m.AdaptyCapacitorPluginWeb()),\n});\n//# sourceMappingURL=plugin.js.map","export default '3.16.2';\n//# sourceMappingURL=version.js.map","import { Capacitor } from '@capacitor/core';\nimport VERSION from './version';\n/**\n * Capacitor implementation of IPlatformAdapter\n * Wraps Capacitor.getPlatform() to detect current OS\n */\nexport class CapacitorPlatformAdapter {\n get OS() {\n const platform = Capacitor.getPlatform();\n if (platform === 'ios' || platform === 'android') {\n return platform;\n }\n if (platform === 'web') {\n return 'web';\n }\n return 'unknown';\n }\n}\n/**\n * Capacitor implementation of ISdkMetadataAdapter\n * Provides SDK name and version metadata\n */\nexport class CapacitorSdkMetadataAdapter {\n get sdkName() {\n return 'capacitor';\n }\n get sdkVersion() {\n return VERSION;\n }\n}\n//# sourceMappingURL=adapters.js.map","import { CoderFactory } from '@adapty/core';\nimport { CapacitorPlatformAdapter, CapacitorSdkMetadataAdapter } from '../adapters';\n/**\n * Singleton instance of CoderFactory for Capacitor SDK\n * Initialized with Capacitor platform and SDK metadata adapters\n */\nexport const coderFactory = new CoderFactory({\n platform: new CapacitorPlatformAdapter(),\n sdkMetadata: new CapacitorSdkMetadataAdapter(),\n});\n//# sourceMappingURL=factory.js.map","import { parseMethodResult as _parseMethodResult, parseCommonEvent as _parseCommonEvent, } from '@adapty/core';\nimport { coderFactory } from './factory';\nexport const parseMethodResult = (input, resultType, ctx) => _parseMethodResult(coderFactory, input, resultType, ctx);\nexport const parseCommonEvent = (event, input, ctx) => _parseCommonEvent(coderFactory, event, input, ctx);\n//# sourceMappingURL=parse.js.map","import { AdaptyCapacitorPlugin } from './bridge/plugin';\nimport { parseCommonEvent } from './coders/parse';\nimport { LogContext } from './logger';\n// Type-safe parser functions for each event\nfunction parseProfileEvent(raw, eventCtx) {\n const profile = parseCommonEvent('did_load_latest_profile', raw, eventCtx);\n return profile ? { profile: profile } : null;\n}\nfunction parseInstallationDetailsSuccessEvent(raw, eventCtx) {\n const details = parseCommonEvent('on_installation_details_success', raw, eventCtx);\n return details ? { details: details } : null;\n}\nfunction parseInstallationDetailsFailEvent(raw, eventCtx) {\n const error = parseCommonEvent('on_installation_details_fail', raw, eventCtx);\n return error ? { error: error } : null;\n}\nconst EVENT_MAP = {\n onLatestProfileLoad: {\n native: 'did_load_latest_profile',\n parse: parseProfileEvent,\n },\n onInstallationDetailsSuccess: {\n native: 'on_installation_details_success',\n parse: parseInstallationDetailsSuccessEvent,\n },\n onInstallationDetailsFail: {\n native: 'on_installation_details_fail',\n parse: parseInstallationDetailsFailEvent,\n },\n};\nexport class AdaptyEmitter {\n constructor() {\n this.nativeEventListeners = new Map();\n this.externalHandlers = new Map();\n this.addListener = async (eventName, listener) => {\n var _a;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'addListener' });\n log.start(() => ({ eventName }));\n const eventConfig = EVENT_MAP[eventName];\n if (!eventConfig) {\n throw new Error(`[Adapty] Unsupported event: ${eventName}`);\n }\n const handlerId = `${eventName}_${Math.random().toString(36)}`;\n const handlersForEvent = (_a = this.externalHandlers.get(eventConfig.native)) !== null && _a !== void 0 ? _a : [];\n handlersForEvent.push({\n id: handlerId,\n handlerName: eventName,\n listener: listener,\n config: eventConfig,\n });\n this.externalHandlers.set(eventConfig.native, handlersForEvent);\n if (!this.nativeEventListeners.has(eventConfig.native)) {\n const handlers = this.externalHandlers;\n const subscription = await AdaptyCapacitorPlugin.addListener(eventConfig.native, (arg) => {\n var _a;\n const eventCtx = new LogContext();\n const eventLog = eventCtx.event({ methodName: eventConfig.native });\n eventLog.start(() => ({ raw: arg }));\n const rawEventData = arg === null || arg === void 0 ? void 0 : arg.data;\n if (typeof rawEventData !== 'string') {\n eventLog.failed(() => ({ error: new Error('[Adapty] Expected event data to be JSON string') }));\n return;\n }\n const eventHandlers = (_a = handlers.get(eventConfig.native)) !== null && _a !== void 0 ? _a : [];\n for (const { handlerName, listener, config } of eventHandlers) {\n let payload = null;\n try {\n payload = config.parse(rawEventData, eventCtx);\n }\n catch (err) {\n eventLog.failed(() => ({ error: err }));\n continue;\n }\n if (!payload) {\n eventLog.failed(() => ({ error: new Error('[Adapty] Parsed payload is null') }));\n continue;\n }\n try {\n listener(payload);\n eventLog.success(() => ({ message: 'Event handled successfully', handlerName }));\n }\n catch (handlerError) {\n eventLog.failed(() => ({ handlerName, handlerError }));\n }\n }\n });\n this.nativeEventListeners.set(eventConfig.native, subscription);\n }\n // Return wrapper handle that can remove this specific handler\n const wrappedHandle = {\n remove: async () => {\n await this.removeHandler(eventConfig.native, handlerId);\n },\n };\n return wrappedHandle;\n };\n }\n async removeHandler(nativeEvent, handlerId) {\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'removeHandler' });\n log.start(() => ({ nativeEvent, handlerId }));\n const handlersForEvent = this.externalHandlers.get(nativeEvent);\n if (!handlersForEvent) {\n log.success(() => ({ message: 'No handlers found for native event', nativeEvent }));\n return;\n }\n const initialHandlersCount = handlersForEvent.length;\n // Remove the specific handler\n const filteredHandlers = handlersForEvent.filter((h) => h.id !== handlerId);\n this.externalHandlers.set(nativeEvent, filteredHandlers);\n const handlerRemoved = filteredHandlers.length < initialHandlersCount;\n if (!handlerRemoved) {\n log.success(() => ({\n message: 'Handler not found in handlers list',\n nativeEvent,\n handlerId,\n remainingHandlers: filteredHandlers.length,\n }));\n return;\n }\n // If no more handlers for this native event, remove the subscription\n if (filteredHandlers.length === 0) {\n this.externalHandlers.delete(nativeEvent);\n const subscription = this.nativeEventListeners.get(nativeEvent);\n if (subscription) {\n try {\n await subscription.remove();\n this.nativeEventListeners.delete(nativeEvent);\n log.success(() => ({\n message: 'Handler and native subscription removed successfully',\n nativeEvent,\n handlerId,\n }));\n }\n catch (error) {\n log.failed(() => ({\n message: `Failed to remove subscription for ${nativeEvent}`,\n error,\n nativeEvent,\n handlerId,\n }));\n }\n }\n else {\n log.success(() => ({\n message: 'Handler removed, no native subscription found',\n nativeEvent,\n handlerId,\n }));\n }\n }\n else {\n log.success(() => ({\n message: 'Handler removed successfully',\n nativeEvent,\n handlerId,\n remainingHandlers: filteredHandlers.length,\n }));\n }\n }\n async removeAllListeners() {\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'removeAllListeners' });\n log.start(() => ({ listenersCount: this.nativeEventListeners.size }));\n try {\n const removePromises = Array.from(this.nativeEventListeners.values()).map((handle, index) => handle.remove().catch((error) => {\n log.failed(() => ({\n message: `Failed to remove event listener ${index}`,\n error,\n index,\n }));\n }));\n this.nativeEventListeners.clear();\n this.externalHandlers.clear();\n await Promise.all(removePromises);\n log.success(() => ({ message: 'All listeners removed successfully' }));\n }\n catch (error) {\n log.failed(() => ({ error }));\n throw error;\n }\n }\n}\n//# sourceMappingURL=adapty-emitter.js.map","import { FetchPolicy } from './types/inputs';\nexport const defaultAdaptyOptions = {\n get_paywall: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n loadTimeoutMs: 5000,\n },\n },\n get_paywall_for_default_audience: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n },\n },\n get_onboarding: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n loadTimeoutMs: 5000,\n },\n },\n get_onboarding_for_default_audience: {\n params: {\n fetchPolicy: FetchPolicy.ReloadRevalidatingCacheData,\n loadTimeoutMs: 5000,\n },\n },\n};\n//# sourceMappingURL=default-configs.js.map","// PluginListenerHandle is no longer referenced directly in this file\nimport { AdaptyError } from '@adapty/core';\nimport { Capacitor } from '@capacitor/core';\nimport { AdaptyEmitter } from './adapty-emitter';\nimport { AdaptyCapacitorPlugin } from './bridge/plugin';\nimport { coderFactory } from './coders/factory';\nimport { parseMethodResult } from './coders/parse';\nimport { defaultAdaptyOptions } from './default-configs';\nimport { Log, LogContext } from './logger';\nimport { filterUndefined, mergeOptions, withErrorContext } from './utils';\nimport VERSION from './version';\n/**\n * Entry point for the Adapty SDK.\n *\n * @remarks\n * This is the main Adapty class, excluding UI rendering functionality.\n *\n * @public\n */\nexport class Adapty {\n constructor() {\n this.activating = null;\n this.resolveHeldActivation = null;\n this.emitter = new AdaptyEmitter();\n this.nonWaitingMethods = [\n 'activate',\n 'is_activated',\n 'get_paywall_for_default_audience',\n 'get_onboarding_for_default_audience',\n 'set_log_level',\n 'set_fallback',\n ];\n this.options = defaultAdaptyOptions;\n /**\n * Adds an event listener for SDK events.\n *\n * @remarks\n * You can listen to various events from the Adapty SDK such as profile updates.\n * The listener will be called whenever the corresponding event occurs.\n *\n * @param eventName - The name of the event to listen to.\n * @param listenerFunc - The function to call when the event occurs.\n * @returns A listener handle that can be used to remove the listener.\n *\n * @example\n * Listen to profile updates\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * const listener = adapty.addListener('onLatestProfileLoad', (profile) => {\n * console.log('Profile updated:', profile);\n * const isSubscribed = profile.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n * if (isSubscribed) {\n * console.log('User has premium access');\n * }\n * });\n *\n * // Later, remove the listener\n * listener.remove();\n * ```\n */\n this.addListener = (eventName, listenerFunc) => {\n const wrappedListener = withErrorContext(listenerFunc, eventName, 'Adapty');\n return this.emitter.addListener(eventName, wrappedListener);\n };\n Log.setVersion(VERSION);\n }\n /**\n * Helper method for logging encode operations\n */\n encodeWithLogging(coder, data, methodName, parentCtx) {\n if (!parentCtx) {\n return coder.encode(data);\n }\n const encodeLog = parentCtx.encode({ methodName: `encode/${methodName}` });\n encodeLog.start(() => ({ data }));\n try {\n const result = coder.encode(data);\n encodeLog.success(() => ({ result }));\n return result;\n }\n catch (error) {\n encodeLog.failed(() => ({ error }));\n throw error;\n }\n }\n /**\n * Handle method calls through crossplatform bridge with type safety\n * @internal\n */\n async handleMethodCall(methodName, args, ctx, log, resultType = 'Void') {\n // Hold on deferred activation first\n if (this.resolveHeldActivation && !this.nonWaitingMethods.includes(methodName)) {\n log.wait(() => ({}));\n await this.resolveHeldActivation();\n this.resolveHeldActivation = null;\n log.waitComplete(() => ({}));\n }\n // Then wait for ongoing activation if required\n if (this.activating && (!this.nonWaitingMethods.includes(methodName) || methodName === 'is_activated')) {\n log.wait(() => ({}));\n await this.activating;\n log.waitComplete(() => ({}));\n }\n const bridgeLog = ctx.bridge({ methodName: `fetch/${methodName}` });\n bridgeLog.start(() => ({ method: methodName, args }));\n try {\n const result = await AdaptyCapacitorPlugin.handleMethodCall({\n methodName,\n args,\n });\n const resultJson = result.crossPlatformJson;\n bridgeLog.success(() => ({ crossPlatformJson: resultJson }));\n const decoded = parseMethodResult(resultJson, resultType, ctx);\n log.success(() => ({ result: decoded }));\n return decoded;\n }\n catch (error) {\n if (error instanceof AdaptyError) {\n log.failed(() => ({ error }));\n throw error;\n }\n bridgeLog.failed(() => ({ error }));\n if (error instanceof Error && !error.message.startsWith('{')) {\n log.failed(() => ({ error }));\n throw error;\n }\n // If JSON parsing fails, wrap the error\n const parseError = new Error(`Failed to parse native response: ${error}`);\n log.failed(() => ({ error: parseError }));\n throw parseError;\n }\n }\n isPaywallProduct(obj) {\n return 'vendorProductId' in obj;\n }\n /**\n * Initializes the Adapty SDK.\n *\n * @remarks\n * This method must be called in order for the SDK to work.\n * It is preferred to call it as early as possible in the app lifecycle,\n * so background activities can be performed and cache can be updated.\n *\n * @example\n *\n * @example\n * Usage with your user identifier from your system\n * ```typescript\n * await adapty.activate({\n * apiKey: 'YOUR_PUBLIC_SDK_KEY',\n * params: {\n * customerUserId: 'YOUR_USER_ID'\n * }\n * });\n * ```\n *\n * @param options - The activation options\n * @param options.apiKey - You can find it in your app settings in Adapty Dashboard App settings > General.\n * @param options.params - Optional activation parameters of type {@link ActivateParamsInput}.\n * @returns A promise that resolves when the SDK is activated.\n * @throws Error if the SDK is already activated or if the API key is invalid.\n */\n async activate(options) {\n const { apiKey, params = {} } = options;\n // Validate API key\n if (!apiKey || typeof apiKey !== 'string' || apiKey.trim().length === 0) {\n throw new Error('API key is required and must be a non-empty string');\n }\n // Prevent multiple activations\n if (this.activating) {\n await this.activating;\n return;\n }\n // Check if already activated (if __ignoreActivationOnFastRefresh is enabled)\n if (params.__ignoreActivationOnFastRefresh) {\n try {\n const isActivated = await this.isActivated();\n if (isActivated) {\n return;\n }\n }\n catch (error) {\n // Continue with activation if we can't check activation status\n }\n }\n // Defer activation if requested (for debugging) — start activation lazily on first blocked call\n if (params.__debugDeferActivation) {\n return new Promise((resolve) => {\n // Do not start activation immediately. It will be started when a blocked method comes in.\n this.resolveHeldActivation = async () => {\n this.activating = this.performActivation(apiKey, params);\n try {\n await this.activating;\n }\n finally {\n this.activating = null;\n }\n resolve();\n };\n });\n }\n // Perform activation\n this.activating = this.performActivation(apiKey, params);\n await this.activating;\n this.activating = null;\n }\n async performActivation(apiKey, params) {\n const method = 'activate';\n // Set log level before creating LogContext\n const logLevel = params.logLevel;\n Log.logLevel = logLevel || null;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ apiKey, params }));\n const configurationCoder = coderFactory.createConfigurationCoder();\n const configuration = configurationCoder.encode(apiKey, params);\n const activateRequestWithUndefined = {\n method,\n configuration,\n };\n const activateRequest = filterUndefined(activateRequestWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(activateRequest), ctx, log);\n }\n /**\n * Checks if the Adapty SDK is activated.\n *\n * @returns A promise that resolves to `true` if the SDK is activated, `false` otherwise.\n * @throws Error if an error occurs while checking activation status.\n */\n async isActivated() {\n const method = 'is_activated';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'Boolean');\n }\n /**\n * Gets the current installation status.\n *\n * @remarks\n * Installation status provides information about when the app was installed,\n * how many times it has been launched, and other installation-related details.\n * The status can be \"not_available\", \"not_determined\", or \"determined\" with details.\n *\n * @returns A promise that resolves with the installation status.\n * @throws Error if an error occurs while retrieving the installation status.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const status = await adapty.getCurrentInstallationStatus();\n * if (status.status === 'determined') {\n * console.log('Install time:', status.details.installTime);\n * console.log('Launch count:', status.details.appLaunchCount);\n * }\n * } catch (error) {\n * console.error('Failed to get installation status:', error);\n * }\n * ```\n */\n async getCurrentInstallationStatus() {\n const method = 'get_current_installation_status';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyInstallationStatus');\n }\n /**\n * Fetches the paywall by the specified placement.\n *\n * @remarks\n * With Adapty, you can remotely configure the products and offers in your app\n * by simply adding them to paywalls – no need for hardcoding them.\n * The only thing you hardcode is the placement ID.\n * This flexibility allows you to easily update paywalls, products, and offers,\n * or run A/B tests, all without the need for a new app release.\n *\n * @param options - The options for fetching the paywall\n * @param options.placementId - The identifier of the desired placement. This is the value you specified when creating a placement in the Adapty Dashboard.\n * @param options.locale - Optional. The identifier of the paywall localization. Default: `'en'`. See {@link https://docs.adapty.io/docs/localizations-and-locale-codes | Localizations and locale codes} for more information.\n * @param options.params - Optional. Additional parameters for fetching the paywall, including fetch policy and load timeout.\n * @returns A promise that resolves with the requested {@link AdaptyPaywall}.\n * @throws Error if the paywall with the specified ID is not found or if your bundle ID does not match with your Adapty Dashboard setup.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * });\n * console.log('Paywall fetched successfully');\n * } catch (error) {\n * console.error('Failed to fetch paywall:', error);\n * }\n * ```\n */\n async getPaywall(options) {\n const method = 'get_paywall';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n load_timeout: params.loadTimeoutMs / 1000,\n locale: optionsWithDefault.locale,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: params.fetchPolicy },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyPaywall');\n }\n /**\n * Fetches the paywall of the specified placement for the **All Users** audience.\n *\n * @remarks\n * With Adapty, you can remotely configure the products and offers in your app\n * by simply adding them to paywalls – no need for hardcoding them.\n * The only thing you hardcode is the placement ID.\n *\n * However, it's crucial to understand that the recommended approach is to fetch the paywall\n * through the placement ID by the {@link getPaywall} method.\n * The `getPaywallForDefaultAudience` method should be a last resort due to its significant drawbacks:\n * - Potential backward compatibility issues\n * - Loss of targeting (all users see the same paywall)\n *\n * See {@link https://docs.adapty.io/docs/capacitor-get-pb-paywalls#get-a-paywall-for-a-default-audience-to-fetch-it-faster | documentation} for more details.\n *\n * @param options - The options for fetching the paywall\n * @param options.placementId - The identifier of the desired placement.\n * @param options.locale - Optional. The identifier of the paywall localization. Default: `'en'`.\n * @param options.params - Optional. Additional parameters for fetching the paywall.\n * @returns A promise that resolves with the requested {@link AdaptyPaywall}.\n * @throws Error if the paywall with the specified ID is not found.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywallForDefaultAudience({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * });\n * } catch (error) {\n * console.error('Failed to fetch paywall:', error);\n * }\n * ```\n */\n async getPaywallForDefaultAudience(options) {\n var _a;\n const method = 'get_paywall_for_default_audience';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n locale: optionsWithDefault.locale,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: (_a = params.fetchPolicy) !== null && _a !== void 0 ? _a : 'reload_revalidating_cache_data' },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyPaywall');\n }\n /**\n * Fetches a list of products associated with a provided paywall.\n *\n * @param options - The options object\n * @param options.paywall - A paywall to fetch products for. You can get it using {@link getPaywall} method.\n * @returns A promise that resolves with a list of {@link AdaptyPaywallProduct} associated with a provided paywall.\n * @throws Error if an error occurs while fetching products.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * const products = await adapty.getPaywallProducts({ paywall });\n * console.log('Products:', products);\n * } catch (error) {\n * console.error('Failed to fetch products:', error);\n * }\n * ```\n */\n async getPaywallProducts(options) {\n const method = 'get_paywall_products';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = coderFactory.createPaywallCoder();\n const argsWithUndefined = {\n method,\n paywall: this.encodeWithLogging(paywallCoder, options.paywall, 'AdaptyPaywall', ctx),\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'Array<AdaptyPaywallProduct>');\n }\n /**\n * Fetches the onboarding by the specified placement.\n *\n * @remarks\n * When you create an onboarding with the no-code builder, it's stored as a container with configuration\n * that your app needs to fetch and display. This container manages the entire experience - what content appears,\n * how it's presented, and how user interactions are processed.\n *\n * @param options - The options for fetching the onboarding\n * @param options.placementId - The identifier of the desired placement.\n * @param options.locale - Optional. The identifier of the onboarding localization. Default: `'en'`.\n * @param options.params - Optional. Additional parameters for fetching the onboarding.\n * @returns A promise that resolves with the requested {@link AdaptyOnboarding}.\n * @throws Error if the onboarding with the specified ID is not found.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const onboarding = await adapty.getOnboarding({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * params: {\n * fetchPolicy: 'reload_revalidating_cache_data',\n * loadTimeoutMs: 5000\n * }\n * });\n * console.log('Onboarding fetched successfully');\n * } catch (error) {\n * console.error('Failed to fetch onboarding:', error);\n * }\n * ```\n */\n async getOnboarding(options) {\n const method = 'get_onboarding';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n locale: optionsWithDefault.locale,\n load_timeout: params.loadTimeoutMs / 1000,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: params.fetchPolicy },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyOnboarding');\n }\n /**\n * Fetches the onboarding of the specified placement for the **All Users** audience.\n *\n * @remarks\n * It's crucial to understand that the recommended approach is to fetch the onboarding\n * by the {@link getOnboarding} method. The `getOnboardingForDefaultAudience` method\n * should be used only if faster fetching outweighs the drawbacks:\n * - Potential backward compatibility issues\n * - Loss of personalization (no targeting based on country, attribution, or custom attributes)\n *\n * @param options - The options for fetching the onboarding\n * @param options.placementId - The identifier of the desired placement.\n * @param options.locale - Optional. The identifier of the onboarding localization. Default: `'en'`.\n * @param options.params - Optional. Additional parameters for fetching the onboarding.\n * @returns A promise that resolves with the requested {@link AdaptyOnboarding}.\n * @throws Error if the onboarding with the specified ID is not found.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const onboarding = await adapty.getOnboardingForDefaultAudience({\n * placementId: 'YOUR_PLACEMENT_ID',\n * locale: 'en',\n * });\n * } catch (error) {\n * console.error('Failed to fetch onboarding:', error);\n * }\n * ```\n */\n async getOnboardingForDefaultAudience(options) {\n var _a;\n const method = 'get_onboarding_for_default_audience';\n const optionsWithDefault = mergeOptions(options, this.options[method]);\n const params = optionsWithDefault.params;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ optionsWithDefault }));\n const argsWithUndefined = {\n method,\n placement_id: optionsWithDefault.placementId,\n locale: optionsWithDefault.locale,\n fetch_policy: params.fetchPolicy === 'return_cache_data_if_not_expired_else_load'\n ? { type: params.fetchPolicy, max_age: params.maxAgeSeconds }\n : { type: (_a = params.fetchPolicy) !== null && _a !== void 0 ? _a : 'reload_revalidating_cache_data' },\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyOnboarding');\n }\n /**\n * Fetches a user profile.\n *\n * @remarks\n * The getProfile method provides the most up-to-date result\n * as it always tries to query the API.\n * If for some reason (e.g. no internet connection),\n * the Adapty SDK fails to retrieve information from the server,\n * the data from cache will be returned.\n * It is also important to note\n * that the Adapty SDK updates {@link AdaptyProfile} cache\n * on a regular basis, in order\n * to keep this information as up-to-date as possible.\n *\n * @returns A promise that resolves with the user's {@link AdaptyProfile}.\n * @throws Error if an error occurs while fetching the profile.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const profile = await adapty.getProfile();\n * const isSubscribed = profile.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n * if (isSubscribed) {\n * console.log('User has access to premium features');\n * }\n * } catch (error) {\n * console.error('Failed to get profile:', error);\n * }\n * ```\n */\n async getProfile() {\n const method = 'get_profile';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyProfile');\n }\n /**\n * Logs in a user with a provided customerUserId.\n *\n * @remarks\n * If you don't have a user id on SDK initialization,\n * you can set it later at any time with this method.\n * The most common cases are after registration/authorization\n * when the user switches from being an anonymous user to an authenticated user.\n *\n * @param options - The identification options\n * @param options.customerUserId - A unique user identifier.\n * @param options.params - Optional. Additional parameters for identification, including platform-specific settings.\n * @returns A promise that resolves when identification is complete.\n * @throws Error if an error occurs during identification.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.identify({ customerUserId: 'YOUR_USER_ID' });\n * console.log('User identified successfully');\n * } catch (error) {\n * console.error('Failed to identify user:', error);\n * }\n * ```\n */\n async identify(options) {\n const method = 'identify';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const identifyParamsCoder = coderFactory.createIdentifyParamsCoder();\n const parameters = identifyParamsCoder.encode(options.params);\n const argsWithUndefined = {\n method,\n customer_user_id: options.customerUserId,\n parameters,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Logs a paywall view event.\n *\n * @remarks\n * Adapty helps you to measure the performance of the paywalls.\n * We automatically collect all the metrics related to purchases except for custom paywall views.\n * This is because only you know when the paywall was shown to a customer.\n *\n * Whenever you show a paywall to your user,\n * call this function to log the event,\n * and it will be accumulated in the paywall metrics.\n *\n * @param options - The options object\n * @param options.paywall - The paywall object that was shown to the user.\n * @returns A promise that resolves when the event is logged.\n * @throws Error if an error occurs while logging the event.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * // ...after opening the paywall\n * await adapty.logShowPaywall({ paywall });\n * ```\n */\n async logShowPaywall(options) {\n const method = 'log_show_paywall';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = coderFactory.createPaywallCoder();\n const argsWithUndefined = {\n method,\n paywall: this.encodeWithLogging(paywallCoder, options.paywall, 'AdaptyPaywall', ctx),\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Opens a web paywall in the default browser.\n *\n * @param options - The options object\n * @param options.paywallOrProduct - The paywall or product to open as a web paywall.\n * @returns A promise that resolves when the web paywall is opened.\n * @throws Error if an error occurs while opening the web paywall.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * await adapty.openWebPaywall({ paywallOrProduct: paywall });\n * } catch (error) {\n * console.error('Failed to open web paywall:', error);\n * }\n * ```\n */\n async openWebPaywall(options) {\n const method = 'open_web_paywall';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = coderFactory.createPaywallCoder();\n const productCoder = coderFactory.createPaywallProductCoder();\n const argsWithUndefined = Object.assign(Object.assign({ method }, (this.isPaywallProduct(options.paywallOrProduct)\n ? { product: this.encodeWithLogging(productCoder, options.paywallOrProduct, 'AdaptyPaywallProduct', ctx) }\n : { paywall: this.encodeWithLogging(paywallCoder, options.paywallOrProduct, 'AdaptyPaywall', ctx) })), (options.openIn ? { open_in: options.openIn } : {}));\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Creates a URL for a web paywall.\n *\n * @remarks\n * This method generates a URL that can be used to open a web version of the paywall.\n * You can use this URL in a custom web view or a browser.\n *\n * @param options - The options object\n * @param options.paywallOrProduct - The paywall or product to create a URL for.\n * @returns A promise that resolves with the web paywall URL.\n * @throws Error if an error occurs while creating the URL.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * const url = await adapty.createWebPaywallUrl({ paywallOrProduct: paywall });\n * console.log('Web paywall URL:', url);\n * } catch (error) {\n * console.error('Failed to create web paywall URL:', error);\n * }\n * ```\n */\n async createWebPaywallUrl(options) {\n const method = 'create_web_paywall_url';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const paywallCoder = coderFactory.createPaywallCoder();\n const productCoder = coderFactory.createPaywallProductCoder();\n const argsWithUndefined = Object.assign({ method }, (this.isPaywallProduct(options.paywallOrProduct)\n ? { product: this.encodeWithLogging(productCoder, options.paywallOrProduct, 'AdaptyPaywallProduct', ctx) }\n : { paywall: this.encodeWithLogging(paywallCoder, options.paywallOrProduct, 'AdaptyPaywall', ctx) }));\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'String');\n }\n /**\n * Logs out the current user.\n *\n * @remarks\n * You can then login the user using {@link identify} method.\n *\n * @returns A promise that resolves when the user is logged out.\n * @throws Error if an error occurs during logout.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.logout();\n * console.log('User logged out successfully');\n * } catch (error) {\n * console.error('Failed to logout user:', error);\n * }\n * ```\n */\n async logout() {\n const method = 'logout';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Performs a purchase of the specified product.\n *\n * @remarks\n * In paywalls built with Paywall Builder, purchases are processed automatically with no additional code.\n *\n * @param options - The purchase options\n * @param options.product - The product to be purchased. You can get it using {@link getPaywallProducts} method.\n * @param options.params - Optional. Additional parameters for the purchase, including Android subscription update params.\n * @returns A promise that resolves with the {@link AdaptyPurchaseResult} object containing details about the purchase.\n * If the result is `'success'`, it also includes the updated user's profile.\n * @throws Error if an error occurs during the purchase process.\n *\n * @example\n * Basic purchase\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const result = await adapty.makePurchase({ product });\n *\n * if (result.type === 'success') {\n * const isSubscribed = result.profile?.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n * if (isSubscribed) {\n * console.log('User is now subscribed!');\n * }\n * }\n * } catch (error) {\n * console.error('Purchase failed:', error);\n * }\n * ```\n */\n async makePurchase(options) {\n var _a;\n const method = 'make_purchase';\n const params = (_a = options.params) !== null && _a !== void 0 ? _a : {};\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const productCoder = coderFactory.createPaywallProductCoder();\n const purchaseParamsCoder = coderFactory.createPurchaseParamsCoder();\n const encodedProduct = this.encodeWithLogging(productCoder, options.product, 'AdaptyPaywallProduct', ctx);\n const productInput = productCoder.getInput(encodedProduct);\n const purchaseParams = this.encodeWithLogging(purchaseParamsCoder, params, 'AdaptyPurchaseParams', ctx);\n const argsWithUndefined = {\n method,\n product: productInput,\n parameters: purchaseParams,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyPurchaseResult');\n }\n /**\n * Opens a native modal screen to redeem Apple Offer Codes.\n *\n * @remarks\n * iOS 14+ only. Since iOS 14.0, your users can redeem Offer Codes.\n * To enable users to redeem offer codes, you can display the offer code redemption sheet.\n *\n * @returns A promise that resolves when the redemption sheet is presented.\n * @throws Error if an error occurs or if called on Android.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.presentCodeRedemptionSheet();\n * } catch (error) {\n * console.error('Failed to present code redemption sheet:', error);\n * }\n * ```\n */\n async presentCodeRedemptionSheet() {\n const method = 'present_code_redemption_sheet';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets the variation ID of the purchase.\n *\n * @remarks\n * In Observer mode, Adapty SDK doesn't know where the purchase was made from.\n * you can manually assign variation to the purchase.\n * After doing this, you'll be able to see metrics in Adapty Dashboard.\n *\n * @param options - The options object\n * @param options.transactionId - The transaction ID of the purchase.\n * @param options.variationId - Optional. The variation ID from the {@link AdaptyPaywall}.\n * @returns A promise that resolves when the transaction is reported.\n * @throws Error if an error occurs while reporting the transaction.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.reportTransaction({\n * transactionId: 'transaction_123',\n * variationId: 'variation_456'\n * });\n * } catch (error) {\n * console.error('Failed to report transaction:', error);\n * }\n * ```\n */\n async reportTransaction(options) {\n const method = 'report_transaction';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n transaction_id: options.transactionId,\n variation_id: options.variationId,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Restores user purchases and updates the profile.\n *\n * @remarks\n * Restoring purchases allows users to regain access to previously purchased content,\n * such as subscriptions or in-app purchases, without being charged again.\n * This feature is especially useful for users who may have uninstalled and reinstalled the app\n * or switched to a new device.\n *\n * In paywalls built with Paywall Builder, purchases are restored automatically without additional code from you.\n *\n * @returns A promise that resolves with the updated user's {@link AdaptyProfile}.\n * @throws Error if an error occurs during the restore process.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const profile = await adapty.restorePurchases();\n * const isSubscribed = profile.accessLevels['YOUR_ACCESS_LEVEL']?.isActive;\n *\n * if (isSubscribed) {\n * console.log('Access restored successfully!');\n * } else {\n * console.log('No active subscriptions found');\n * }\n * } catch (error) {\n * console.error('Failed to restore purchases:', error);\n * }\n * ```\n */\n async restorePurchases() {\n const method = 'restore_purchases';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({}));\n const argsWithUndefined = {\n method,\n };\n const args = filterUndefined(argsWithUndefined);\n return await this.handleMethodCall(method, JSON.stringify(args), ctx, log, 'AdaptyProfile');\n }\n /**\n * Sets the fallback paywalls.\n *\n * @remarks\n * Fallback file will be used if the SDK fails\n * to fetch the paywalls from the dashboard.\n * It is not designed to be used for the offline flow,\n * as products are not cached in Adapty.\n *\n * @param options - The options object\n * @param options.fileLocation - The location of the fallback file for each platform.\n * @returns A promise that resolves when fallback placements are saved.\n * @throws Error if an error occurs while setting the fallback.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.setFallback({\n * fileLocation: {\n * ios: { fileName: 'fallback_paywalls.json' },\n * android: { relativeAssetPath: 'fallback_paywalls.json' }\n * }\n * });\n * } catch (error) {\n * console.error('Failed to set fallback:', error);\n * }\n * ```\n */\n async setFallback(options) {\n const method = 'set_fallback';\n const platform = Capacitor.getPlatform();\n let fileLocationString;\n if (platform === 'ios') {\n fileLocationString = options.fileLocation.ios.fileName;\n }\n else if (platform === 'android') {\n // Add suffixes to distinguish resource types on Android\n if ('relativeAssetPath' in options.fileLocation.android) {\n fileLocationString = `${options.fileLocation.android.relativeAssetPath}a`;\n }\n else {\n fileLocationString = `${options.fileLocation.android.rawResName}r`;\n }\n }\n else {\n fileLocationString = '';\n }\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ platform, fileLocationString }));\n const argsWithUndefined = {\n method,\n asset_id: fileLocationString,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets an integration identifier for the current user.\n *\n * @remarks\n * Integration identifiers can be used to link Adapty profiles to external systems\n * and track users across different platforms.\n *\n * @param options - The options object\n * @param options.key - The key of the integration identifier.\n * @param options.value - The value of the integration identifier.\n * @returns A promise that resolves when the integration identifier is set.\n * @throws Error if an error occurs while setting the identifier.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.setIntegrationIdentifier({\n * key: 'firebase_app_instance_id',\n * value: 'YOUR_FIREBASE_ID'\n * });\n * } catch (error) {\n * console.error('Failed to set integration identifier:', error);\n * }\n * ```\n */\n async setIntegrationIdentifier(options) {\n const method = 'set_integration_identifiers';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n key_values: { [options.key]: options.value },\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Sets the preferred log level and/or custom logger configuration.\n *\n * @remarks\n * By default, the log level is set to `error`.\n *\n * There are four levels available:\n * - `error`: only errors will be logged\n * - `warn`: messages from the SDK that do not cause critical errors, but are worth paying attention to\n * - `info`: various information messages, such as those that log the lifecycle of various modules\n * - `verbose`: any additional information that may be useful during debugging, such as function calls, API queries, etc.\n *\n * @param options - The options object\n * @param options.logLevel - Optional. The new preferred log level.\n * @param options.logger - Optional. Custom logger configuration.\n * @returns A promise that resolves when the log level is set.\n * @throws Error if the log level is invalid.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * // Set log level\n * await adapty.setLogLevel({ logLevel: 'verbose' });\n *\n * // Or set custom logger\n * await adapty.setLogLevel({\n * logger: {\n * handler: (level, scope, message, data) => {\n * sendLogToYourServer(`[${level}] ${message}`, data);\n * }\n * }\n * });\n * ```\n */\n async setLogLevel(options) {\n const method = 'set_log_level';\n if (options.logger) {\n Log.configure(options.logger);\n }\n if (options.logLevel !== undefined) {\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options: { logLevel: options.logLevel } }));\n // Update log level immediately\n Log.logLevel = options.logLevel;\n const argsWithUndefined = {\n method,\n value: options.logLevel,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n }\n /**\n * Updates attribution data for the current user.\n *\n * @remarks\n * Attribution data can be used to track marketing campaigns and user acquisition sources.\n *\n * @param options - The options object\n * @param options.attribution - An object containing attribution data.\n * @param options.source - The source of the attribution data (e.g., 'adjust', 'appsflyer').\n * @returns A promise that resolves when the attribution data is updated.\n * @throws Error if parameters are invalid or not provided.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * const attribution = {\n * 'Adjust Adid': 'adjust_adid',\n * 'Adjust Network': 'adjust_network',\n * 'Adjust Campaign': 'adjust_campaign',\n * 'Adjust Adgroup': 'adjust_adgroup',\n * };\n *\n * await adapty.updateAttribution({ attribution, source: 'adjust' });\n * } catch (error) {\n * console.error('Failed to update attribution:', error);\n * }\n * ```\n */\n async updateAttribution(options) {\n const method = 'update_attribution_data';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n attribution: JSON.stringify(options.attribution),\n source: options.source,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Updates the user's consent for collecting refund data.\n *\n * @remarks\n * iOS only. This method has no effect on Android.\n * Use this method to update whether the SDK should collect refund data for the user.\n *\n * @param options - The options object\n * @param options.consent - Whether to collect refund data.\n * @returns A promise that resolves when the consent is updated (or immediately on Android).\n * @throws Error if an error occurs on iOS.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.updateCollectingRefundDataConsent({ consent: true });\n * } catch (error) {\n * console.error('Failed to update consent:', error);\n * }\n * ```\n */\n async updateCollectingRefundDataConsent(options) {\n const platform = Capacitor.getPlatform();\n if (platform === 'android') {\n return Promise.resolve();\n }\n const method = 'update_collecting_refund_data_consent';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n consent: options.consent,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Updates the user's refund preference.\n *\n * @remarks\n * iOS only. This method has no effect on Android.\n * Use this method to set the user's preference for handling refunds.\n *\n * @param options - The options object\n * @param options.refundPreference - The refund preference setting.\n * @returns A promise that resolves when the preference is updated (or immediately on Android).\n * @throws Error if an error occurs on iOS.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.updateRefundPreference({ refundPreference: 'ask_to_cancel' });\n * } catch (error) {\n * console.error('Failed to update refund preference:', error);\n * }\n * ```\n */\n async updateRefundPreference(options) {\n const platform = Capacitor.getPlatform();\n if (platform === 'android') {\n return Promise.resolve();\n }\n const method = 'update_refund_preference';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const argsWithUndefined = {\n method,\n refund_preference: options.refundPreference,\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Updates a profile for the current user.\n *\n * @remarks\n * You can set optional attributes such as email, phone number, etc. to the user of your app.\n * You can then use attributes to create user segments or just view them in CRM.\n *\n * The attributes that you've previously set won't be reset.\n * Custom attributes can be removed by passing `null` as their values.\n *\n * @param options - An object of parameters to update. Partial {@link AdaptyProfileParameters}.\n * @returns A promise that resolves when the profile is updated.\n * @throws Error if parameters are invalid or there is a network error.\n *\n * @example\n * Basic profile update\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * try {\n * await adapty.updateProfile({\n * email: 'email@email.com',\n * phoneNumber: '+18888888888',\n * firstName: 'John',\n * lastName: 'Appleseed',\n * gender: 'other',\n * birthday: new Date().toISOString(),\n * });\n * console.log('Profile updated successfully');\n * } catch (error) {\n * console.error('Failed to update profile:', error);\n * }\n * ```\n *\n * @example\n * Custom attributes\n * ```typescript\n * await adapty.updateProfile({\n * codableCustomAttributes: {\n * key_1: 'value_1',\n * key_2: 2,\n * },\n * });\n *\n * // To remove keys, pass null as their values\n * await adapty.updateProfile({\n * codableCustomAttributes: {\n * key_1: null,\n * },\n * });\n * ```\n */\n async updateProfile(options) {\n const method = 'update_profile';\n const ctx = new LogContext();\n const log = ctx.call({ methodName: method });\n log.start(() => ({ options }));\n const profileParametersCoder = coderFactory.createProfileParametersCoder();\n const argsWithUndefined = {\n method,\n params: this.encodeWithLogging(profileParametersCoder, options, 'AdaptyProfileParameters', ctx),\n };\n const args = filterUndefined(argsWithUndefined);\n await this.handleMethodCall(method, JSON.stringify(args), ctx, log);\n }\n /**\n * Removes all attached event listeners.\n *\n * @remarks\n * This method removes all event listeners that were added via {@link addListener}.\n * It's recommended to call this method when cleaning up resources,\n * such as when unmounting a component.\n *\n * @returns A promise that resolves when all listeners are removed.\n *\n * @example\n * ```typescript\n * import { adapty } from '@adapty/capacitor';\n *\n * // Remove all listeners\n * await adapty.removeAllListeners();\n * ```\n */\n async removeAllListeners() {\n await this.emitter.removeAllListeners();\n }\n}\n//# sourceMappingURL=adapty.js.map","import { parsePaywallEvent as _parsePaywallEvent } from '@adapty/core';\nimport { coderFactory } from './factory';\nexport const parsePaywallEvent = (input, ctx) => _parsePaywallEvent(coderFactory, input, ctx);\n//# sourceMappingURL=parse-paywall.js.map","import { AdaptyCapacitorPlugin } from '../bridge/plugin';\nimport { LogContext } from '../logger';\n/**\n * Base class for view event emitters that manages common event handling logic.\n * Each event type can have only one handler - new handlers replace existing ones.\n */\nexport class BaseViewEmitter {\n constructor(viewId) {\n this.eventListeners = new Map();\n this.handlers = new Map();\n this.internalHandlers = new Map();\n this.viewId = viewId;\n }\n async addListener(event, callback, onRequestClose) {\n const nativeEvent = this.getNativeEventForHandler(event);\n if (!nativeEvent) {\n throw new Error(`No native event mapping found for handler: ${String(event)}`);\n }\n // Replace existing handler for this event type\n this.handlers.set(event, {\n handler: callback,\n onRequestClose,\n });\n return await this.getOrCreateNativeListener(nativeEvent);\n }\n async addInternalListener(event, callback) {\n const nativeEvent = this.getNativeEventForHandler(event);\n if (!nativeEvent) {\n throw new Error(`No native event mapping found for handler: ${String(event)}`);\n }\n this.internalHandlers.set(event, { handler: callback });\n return await this.getOrCreateNativeListener(nativeEvent);\n }\n removeAllListeners() {\n this.eventListeners.forEach((subscription) => {\n subscription.remove().catch(() => {\n // intentionally ignore errors during cleanup\n });\n });\n this.eventListeners.clear();\n this.handlers.clear();\n this.internalHandlers.clear();\n }\n async createNativeListener(nativeEvent) {\n const emitterName = this.getEmitterName();\n const viewId = this.viewId;\n const subscription = await AdaptyCapacitorPlugin.addListener(nativeEvent, (arg) => {\n const ctx = new LogContext();\n const log = ctx.event({ methodName: nativeEvent });\n log.start(() => ({ raw: arg }));\n // Strict validation: events must come in {data: \"json_string\"} format\n if (!arg || typeof arg !== 'object' || !arg.data) {\n const error = new Error(`[${emitterName}] Invalid event format received. Expected {data: \"json_string\"}, got: ${JSON.stringify(arg)}`);\n log.failed(() => ({ error }));\n throw error;\n }\n const rawEventData = arg.data;\n // Parse JSON string using specific parser with decode logging\n let eventData;\n if (typeof rawEventData === 'string') {\n try {\n eventData = this.parseEventData(rawEventData, ctx);\n }\n catch (error) {\n log.failed(() => ({ error }));\n throw error;\n }\n }\n else {\n const err = new Error(`[${emitterName}] Expected event data to be JSON string, got ${typeof rawEventData}: ${rawEventData}`);\n log.failed(() => ({ error: err }));\n throw err;\n }\n const eventViewId = this.getEventViewId(eventData);\n if (viewId !== eventViewId) {\n return;\n }\n const handlerName = this.getHandlerForNativeEvent(nativeEvent, eventData);\n if (!handlerName) {\n return;\n }\n // 1. Client handler (single)\n const handlerData = this.handlers.get(handlerName);\n if (handlerData) {\n const { handler, onRequestClose } = handlerData;\n const callbackArgs = this.extractCallbackArgs(handlerName, eventData);\n const cb = handler;\n try {\n const shouldClose = cb(...callbackArgs);\n if (shouldClose) {\n onRequestClose().catch((error) => {\n log.failed(() => ({ error, handlerName }));\n });\n }\n log.success(() => ({ message: 'Event handled successfully', handlerName }));\n }\n catch (error) {\n log.failed(() => ({ error, handlerName }));\n }\n }\n // 2. Internal handler\n const internalHandlerData = this.internalHandlers.get(handlerName);\n if (internalHandlerData) {\n try {\n internalHandlerData.handler(eventData);\n }\n catch (error) {\n log.failed(() => ({ error, handlerName: `internal:${String(handlerName)}` }));\n }\n }\n });\n this.eventListeners.set(nativeEvent, subscription);\n return subscription;\n }\n async getOrCreateNativeListener(nativeEvent) {\n const existing = this.eventListeners.get(nativeEvent);\n if (existing) {\n return existing;\n }\n const created = await this.createNativeListener(nativeEvent);\n if (!created) {\n throw new Error(`Failed to register listener for ${nativeEvent}`);\n }\n return created;\n }\n}\n//# sourceMappingURL=base-view-emitter.js.map","import { parsePaywallEvent } from '../coders/parse-paywall';\nimport { PaywallEventId } from '../types/paywall-events';\nimport { BaseViewEmitter } from './base-view-emitter';\n/**\n * PaywallViewEmitter manages event handlers for paywall view events.\n * Each event type can have only one handler - new handlers replace existing ones.\n */\nexport class PaywallViewEmitter extends BaseViewEmitter {\n parseEventData(rawEventData, ctx) {\n const result = parsePaywallEvent(rawEventData, ctx);\n if (!result) {\n throw new Error('Failed to parse paywall event');\n }\n return result;\n }\n getNativeEventForHandler(event) {\n return HANDLER_TO_NATIVE_EVENT[event];\n }\n getHandlerForNativeEvent(nativeEvent, eventData) {\n const resolver = NATIVE_EVENT_RESOLVER[nativeEvent];\n if (!resolver) {\n return null;\n }\n return resolver(eventData);\n }\n extractCallbackArgs(handlerName, eventData) {\n return extractCallbackArgs(handlerName, eventData);\n }\n getEventViewId(eventData) {\n var _a, _b;\n return (_b = (_a = eventData === null || eventData === void 0 ? void 0 : eventData.view) === null || _a === void 0 ? void 0 : _a.id) !== null && _b !== void 0 ? _b : null;\n }\n getEmitterName() {\n return 'PaywallViewEmitter';\n }\n}\nconst NATIVE_EVENT_RESOLVER = {\n [PaywallEventId.DidPerformAction]: (event) => {\n var _a;\n if (event.id !== PaywallEventId.DidPerformAction) {\n return null;\n }\n const actionMap = {\n close: 'onCloseButtonPress',\n system_back: 'onAndroidSystemBack',\n open_url: 'onUrlPress',\n custom: 'onCustomAction',\n };\n return (_a = actionMap[event.action.type]) !== null && _a !== void 0 ? _a : null;\n },\n [PaywallEventId.DidAppear]: () => 'onAppeared',\n [PaywallEventId.DidDisappear]: () => 'onDisappeared',\n [PaywallEventId.DidSelectProduct]: () => 'onProductSelected',\n [PaywallEventId.DidStartPurchase]: () => 'onPurchaseStarted',\n [PaywallEventId.DidFinishPurchase]: () => 'onPurchaseCompleted',\n [PaywallEventId.DidFailPurchase]: () => 'onPurchaseFailed',\n [PaywallEventId.DidStartRestore]: () => 'onRestoreStarted',\n [PaywallEventId.DidFinishRestore]: () => 'onRestoreCompleted',\n [PaywallEventId.DidFailRestore]: () => 'onRestoreFailed',\n [PaywallEventId.DidFailRendering]: () => 'onRenderingFailed',\n [PaywallEventId.DidFailLoadingProducts]: () => 'onLoadingProductsFailed',\n [PaywallEventId.DidFinishWebPaymentNavigation]: () => 'onWebPaymentNavigationFinished',\n};\nconst HANDLER_TO_NATIVE_EVENT = {\n onCloseButtonPress: PaywallEventId.DidPerformAction,\n onAndroidSystemBack: PaywallEventId.DidPerformAction,\n onUrlPress: PaywallEventId.DidPerformAction,\n onCustomAction: PaywallEventId.DidPerformAction,\n onProductSelected: PaywallEventId.DidSelectProduct,\n onPurchaseStarted: PaywallEventId.DidStartPurchase,\n onPurchaseCompleted: PaywallEventId.DidFinishPurchase,\n onPurchaseFailed: PaywallEventId.DidFailPurchase,\n onRestoreStarted: PaywallEventId.DidStartRestore,\n onRestoreCompleted: PaywallEventId.DidFinishRestore,\n onRestoreFailed: PaywallEventId.DidFailRestore,\n onAppeared: PaywallEventId.DidAppear,\n onDisappeared: PaywallEventId.DidDisappear,\n onRenderingFailed: PaywallEventId.DidFailRendering,\n onLoadingProductsFailed: PaywallEventId.DidFailLoadingProducts,\n onWebPaymentNavigationFinished: PaywallEventId.DidFinishWebPaymentNavigation,\n};\nfunction extractCallbackArgs(handlerName, event) {\n var _a;\n switch (event.id) {\n case PaywallEventId.DidSelectProduct:\n return [event.productId];\n case PaywallEventId.DidStartPurchase:\n return [event.product];\n case PaywallEventId.DidFinishPurchase:\n return [event.purchaseResult, event.product];\n case PaywallEventId.DidFailPurchase:\n return [event.error, event.product];\n case PaywallEventId.DidFinishRestore:\n return [event.profile];\n case PaywallEventId.DidFailRestore:\n case PaywallEventId.DidFailRendering:\n case PaywallEventId.DidFailLoadingProducts:\n return [event.error];\n case PaywallEventId.DidPerformAction:\n if (handlerName === 'onUrlPress' || handlerName === 'onCustomAction') {\n return [(_a = event.action.value) !== null && _a !== void 0 ? _a : ''];\n }\n return [];\n case PaywallEventId.DidFinishWebPaymentNavigation:\n return [event.product, event.error];\n case PaywallEventId.DidAppear:\n case PaywallEventId.DidDisappear:\n case PaywallEventId.DidStartRestore:\n return [];\n }\n}\n//# sourceMappingURL=paywall-view-emitter.js.map","import { Log } from '../logger';\n/**\n * Default event handlers that provide standard closing behavior\n */\nexport const DEFAULT_EVENT_HANDLERS = {\n onCloseButtonPress: () => true,\n onAndroidSystemBack: () => true,\n onUrlPress: (url) => {\n if (typeof window !== 'undefined') {\n try {\n window.open(new URL(url), '_blank');\n }\n catch (_a) {\n Log.warn('onUrlPress', () => `Invalid URL: ${url}`);\n }\n }\n return false;\n },\n onCustomAction: () => false,\n onProductSelected: () => false,\n onPurchaseStarted: () => false,\n onPurchaseCompleted: (purchaseResult) => (purchaseResult === null || purchaseResult === void 0 ? void 0 : purchaseResult.type) !== 'user_cancelled',\n onPurchaseFailed: () => false,\n onRestoreStarted: () => false,\n onRestoreCompleted: () => true,\n onRestoreFailed: () => false,\n onAppeared: () => false,\n onDisappeared: () => false,\n onRenderingFailed: () => true,\n onLoadingProductsFailed: () => false,\n onWebPaymentNavigationFinished: () => false,\n};\nexport const AdaptyUiDialogActionType = Object.freeze({\n primary: 'primary',\n secondary: 'secondary',\n});\nexport const DEFAULT_ONBOARDING_EVENT_HANDLERS = {\n onClose: () => true,\n};\n//# sourceMappingURL=types.js.map","import { AdaptyError } from '@adapty/core';\nimport { coderFactory } from '../coders/factory';\nimport { LogContext, Log } from '../logger';\nimport { mapValues, withErrorContext } from '../utils';\nimport { PaywallViewEmitter } from './paywall-view-emitter';\nimport { DEFAULT_EVENT_HANDLERS } from './types';\nconst DEFAULT_PARAMS = {\n prefetchProducts: true,\n loadTimeoutMs: 5000,\n};\n/**\n * Controller for managing paywall views.\n *\n * @remarks\n * This class provides methods to present, dismiss, and handle events for paywall views\n * created with the Paywall Builder. Create instances using the {@link createPaywallView} function\n * rather than directly constructing this class.\n *\n * @public\n */\nexport class PaywallViewController {\n /**\n * Intended way to create a ViewController instance.\n * It prepares a native controller to be presented\n * and creates reference between native controller and JS instance\n * @internal\n */\n static async create(paywall, params, adaptyPlugin) {\n const controller = new PaywallViewController(adaptyPlugin);\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_create_paywall_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ paywall, params }));\n const paywallCoder = coderFactory.createPaywallCoder();\n const paramsCoder = coderFactory.createUiCreatePaywallViewParamsCoder();\n const paramsWithDefaults = Object.assign(Object.assign({}, DEFAULT_PARAMS), params);\n const data = Object.assign({ method: methodKey, paywall: paywallCoder.encode(paywall) }, paramsCoder.encode(paramsWithDefaults));\n const result = (await controller.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log));\n controller.id = result.id;\n controller.viewEmitter = new PaywallViewEmitter(controller.id);\n await controller.setEventHandlers(DEFAULT_EVENT_HANDLERS);\n return controller;\n }\n /**\n * Since constructors in JS cannot be async, it is not\n * preferred to create ViewControllers in direct way.\n * Consider using @link{ViewController.create} instead\n *\n * @internal\n */\n constructor(adaptyPlugin) {\n this.id = null;\n this.viewEmitter = null;\n this.onRequestClose = async () => {\n try {\n await this.dismiss();\n }\n catch (error) {\n Log.warn('setEventHandlers', () => 'Failed to dismiss paywall', () => ({ error }));\n }\n };\n this.adaptyPlugin = adaptyPlugin;\n }\n /**\n * Presents the paywall view as a modal screen.\n *\n * @remarks\n * Calling `present` on an already visible paywall view will result in an error.\n * The paywall will be displayed with the configured presentation style on iOS.\n * On Android, the paywall is always presented as a full-screen activity.\n *\n * @param options - Optional presentation options\n * @param options.iosPresentationStyle - iOS presentation style. Available options: `'full_screen'` (default) or `'page_sheet'`. Only affects iOS platform.\n * @returns A promise that resolves when the paywall is presented.\n * @throws {@link AdaptyError} if the view reference is invalid or the view is already presented.\n *\n * @example\n * Present with default full-screen style\n * ```typescript\n * import { adapty, createPaywallView } from '@adapty/capacitor';\n *\n * const paywall = await adapty.getPaywall({ placementId: 'YOUR_PLACEMENT_ID' });\n * const view = await createPaywallView(paywall);\n * await view.present();\n * ```\n *\n * @example\n * Present with page sheet style on iOS\n * ```typescript\n * await view.present({ iosPresentationStyle: 'page_sheet' });\n * ```\n */\n async present(options = {}) {\n var _a;\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_present_paywall_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id, iosPresentationStyle: options.iosPresentationStyle }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n const data = {\n method: methodKey,\n id: this.id,\n ios_presentation_style: (_a = options.iosPresentationStyle) !== null && _a !== void 0 ? _a : 'full_screen',\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n }\n /**\n * Dismisses the paywall view.\n *\n * @remarks\n * This method closes the paywall and cleans up associated resources.\n * After dismissing, the view controller instance cannot be reused.\n *\n * @returns A promise that resolves when the paywall is dismissed.\n * @throws {@link AdaptyError} if the view reference is invalid.\n *\n * @example\n * ```typescript\n * import { createPaywallView } from '@adapty/capacitor';\n *\n * const view = await createPaywallView(paywall);\n * await view.present();\n * // ... later\n * await view.dismiss();\n * ```\n */\n async dismiss() {\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_dismiss_paywall_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n const data = {\n method: methodKey,\n id: this.id,\n destroy: true,\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n this.clearEventHandlers();\n }\n /**\n * Displays a dialog to the user.\n *\n * @remarks\n * Use this method to show custom dialogs within the paywall flow.\n * If you provide two actions in the config, the primary action should cancel the operation\n * and leave things unchanged, while the secondary action should confirm the operation.\n *\n * @param config - Configuration for the dialog.\n * @param config.title - The dialog title.\n * @param config.content - The dialog message content.\n * @param config.primaryActionTitle - The title for the primary (default) action button.\n * @param config.secondaryActionTitle - Optional. The title for the secondary action button.\n * @returns A promise that resolves to the action type that the user selected: `'primary'` or `'secondary'`.\n * @throws {@link AdaptyError} if the view reference is invalid.\n *\n * @example\n * Show confirmation dialog\n * ```typescript\n * const action = await view.showDialog({\n * title: 'Confirm Purchase',\n * content: 'Are you sure you want to proceed with this purchase?',\n * primaryActionTitle: 'Cancel',\n * secondaryActionTitle: 'Continue'\n * });\n *\n * if (action === 'secondary') {\n * console.log('User confirmed');\n * }\n * ```\n */\n async showDialog(config) {\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_show_dialog';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n const dialogConfig = {\n default_action_title: config.primaryActionTitle,\n secondary_action_title: config.secondaryActionTitle,\n title: config.title,\n content: config.content,\n };\n const data = {\n method: methodKey,\n id: this.id,\n configuration: dialogConfig,\n };\n return await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n }\n /**\n * Registers event handlers for paywall UI events.\n *\n * @remarks\n * Each event type can have only one handler — new handlers replace existing ones.\n * Default handlers are registered automatically in {@link createPaywallView} and provide standard closing behavior:\n * - `onCloseButtonPress` - closes the paywall\n * - `onAndroidSystemBack` - closes the paywall (Android only)\n * - `onRestoreCompleted` - closes the paywall after successful restore\n * - `onRenderingFailed` - closes the paywall when rendering fails\n * - `onPurchaseCompleted` - closes the paywall after successful purchase\n *\n * If you want to override these listeners, we strongly recommend returning `true`\n * (or `purchaseResult.type !== 'user_cancelled'` in case of `onPurchaseCompleted`)\n * from your custom listener to retain default closing behavior.\n *\n * Calling this method multiple times will replace previously registered handlers for provided events.\n *\n * @see {@link https://adapty.io/docs/capacitor-handling-events | Handling View Events}\n *\n * @param eventHandlers - Set of event handling callbacks. Only provided handlers will be registered or updated.\n * @returns A promise that resolves to an unsubscribe function that removes all registered listeners.\n *\n * @example\n * Register custom event handlers\n * ```typescript\n * import { createPaywallView } from '@adapty/capacitor';\n *\n * const view = await createPaywallView(paywall);\n *\n * const unsubscribe = await view.setEventHandlers({\n * onPurchaseStarted: (product) => {\n * console.log('Purchase started:', product.vendorProductId);\n * },\n * onPurchaseCompleted: (result) => {\n * console.log('Purchase completed:', result.type);\n * // Return true to keep default closing behavior\n * return result.type !== 'user_cancelled';\n * },\n * onPurchaseFailed: (error) => {\n * console.error('Purchase failed:', error);\n * }\n * });\n *\n * await view.present();\n *\n * // Later, unsubscribe all handlers\n * unsubscribe();\n * ```\n */\n async setEventHandlers(eventHandlers = {}) {\n var _a;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'setEventHandlers' });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({\n adaptyCode: 2002,\n message: 'No view reference',\n });\n }\n Log.verbose('setEventHandlers', () => 'Registering event handlers for view', () => ({ id: this.id }));\n const viewEmitter = (_a = this.viewEmitter) !== null && _a !== void 0 ? _a : new PaywallViewEmitter(this.id);\n this.viewEmitter = viewEmitter;\n const wrappedErrorLogEventHandlers = mapValues(eventHandlers, (handler, eventName) => handler && typeof handler === 'function'\n ? withErrorContext(handler, eventName, 'PaywallViewController')\n : undefined);\n // Merge with defaults to ensure default behavior is preserved after unsubscribe/resubscribe cycles\n const finalEventHandlers = Object.assign(Object.assign({}, DEFAULT_EVENT_HANDLERS), wrappedErrorLogEventHandlers);\n for (const [eventName, handler] of Object.entries(finalEventHandlers)) {\n if (handler && typeof handler === 'function') {\n try {\n await viewEmitter.addListener(eventName, handler, this.onRequestClose);\n Log.verbose('setEventHandlers', () => 'Registered handler for', () => ({ eventName }));\n }\n catch (error) {\n Log.error('setEventHandlers', () => `Failed to register handler for ${eventName}`, () => ({ error }));\n }\n }\n }\n // Return unsubscribe function\n const unsubscribe = () => {\n Log.info('setEventHandlers', () => 'Unsubscribing event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n };\n return unsubscribe;\n }\n /**\n * Clears all registered event handlers.\n *\n * @remarks\n * This method removes all previously registered event handlers.\n * After calling this method, no event handlers will be active\n * until you call {@link setEventHandlers} again.\n *\n * Use this after dismiss to remove all event handlers\n *\n * @example\n * ```typescript\n * const view = await createPaywallView(paywall);\n * await view.setEventHandlers({ onPurchaseCompleted: handlePurchase });\n *\n * // Later, clear all handlers\n * view.clearEventHandlers();\n * ```\n */\n clearEventHandlers() {\n Log.info('clearEventHandlers', () => 'Clearing all event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n }\n}\n//# sourceMappingURL=paywall-view-controller.js.map","import { parseOnboardingEvent as _parseOnboardingEvent } from '@adapty/core';\nimport { coderFactory } from './factory';\nexport const parseOnboardingEvent = (input, ctx) => _parseOnboardingEvent(coderFactory, input, ctx);\n//# sourceMappingURL=parse-onboarding.js.map","import { parseOnboardingEvent } from '../coders/parse-onboarding';\nimport { OnboardingEventId } from '../types/onboarding-events';\nimport { BaseViewEmitter } from './base-view-emitter';\n/**\n * OnboardingViewEmitter manages event handlers for onboarding view events.\n * Each event type can have only one handler - new handlers replace existing ones.\n */\nexport class OnboardingViewEmitter extends BaseViewEmitter {\n parseEventData(rawEventData, ctx) {\n const result = parseOnboardingEvent(rawEventData, ctx);\n if (!result) {\n throw new Error('Failed to parse onboarding event');\n }\n return result;\n }\n getNativeEventForHandler(event) {\n return HANDLER_TO_NATIVE_EVENT[event];\n }\n getHandlerForNativeEvent(nativeEvent) {\n var _a;\n return (_a = NATIVE_EVENT_RESOLVER[nativeEvent]) !== null && _a !== void 0 ? _a : null;\n }\n extractCallbackArgs(handlerName, eventData) {\n return extractCallbackArgs(handlerName, eventData);\n }\n getEventViewId(eventData) {\n var _a, _b;\n return (_b = (_a = eventData === null || eventData === void 0 ? void 0 : eventData.view) === null || _a === void 0 ? void 0 : _a.id) !== null && _b !== void 0 ? _b : null;\n }\n getEmitterName() {\n return 'OnboardingViewEmitter';\n }\n}\nconst HANDLER_TO_NATIVE_EVENT = {\n onError: 'onboarding_did_fail_with_error',\n onAnalytics: 'onboarding_on_analytics_action',\n onFinishedLoading: 'onboarding_did_finish_loading',\n onClose: 'onboarding_on_close_action',\n onCustom: 'onboarding_on_custom_action',\n onPaywall: 'onboarding_on_paywall_action',\n onStateUpdated: 'onboarding_on_state_updated_action',\n};\nconst NATIVE_EVENT_RESOLVER = {\n onboarding_did_fail_with_error: 'onError',\n onboarding_on_analytics_action: 'onAnalytics',\n onboarding_did_finish_loading: 'onFinishedLoading',\n onboarding_on_close_action: 'onClose',\n onboarding_on_custom_action: 'onCustom',\n onboarding_on_paywall_action: 'onPaywall',\n onboarding_on_state_updated_action: 'onStateUpdated',\n};\nfunction extractCallbackArgs(_handlerName, event) {\n switch (event.id) {\n case OnboardingEventId.Close:\n case OnboardingEventId.Custom:\n case OnboardingEventId.Paywall:\n return [event.actionId, event.meta];\n case OnboardingEventId.StateUpdated:\n return [event.action, event.meta];\n case OnboardingEventId.FinishedLoading:\n return [event.meta];\n case OnboardingEventId.Analytics:\n return [\n Object.assign(Object.assign({}, event.event), { \n // Add backward compatibility: populate element_id from elementId\n element_id: event.event.elementId }),\n event.meta,\n ];\n case OnboardingEventId.Error:\n return [event.error];\n }\n}\n//# sourceMappingURL=onboarding-view-emitter.js.map","import { AdaptyError } from '@adapty/core';\nimport { coderFactory } from '../coders/factory';\nimport { LogContext, Log } from '../logger';\nimport { WebPresentation } from '../types';\nimport { mapValues, withErrorContext } from '../utils';\nimport { OnboardingViewEmitter } from './onboarding-view-emitter';\nimport { DEFAULT_ONBOARDING_EVENT_HANDLERS } from './types';\nexport const DEFAULT_ONBOARDING_PARAMS = {\n externalUrlsPresentation: WebPresentation.BrowserInApp,\n};\n/**\n * Controller for managing onboarding views.\n *\n * @remarks\n * This class provides methods to present, dismiss, and handle events for onboarding views\n * created with the Onboarding Builder. Create instances using the {@link createOnboardingView} function\n * rather than directly constructing this class.\n *\n * @public\n */\nexport class OnboardingViewController {\n /**\n * Intended way to create a OnboardingViewController instance.\n * It prepares a native controller to be presented\n * and creates reference between native controller and JS instance\n * @internal\n */\n static async create(onboarding, adaptyPlugin, params = {}) {\n const controller = new OnboardingViewController(adaptyPlugin);\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_create_onboarding_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ onboarding, params }));\n const coder = coderFactory.createOnboardingCoder();\n const paramsWithDefaults = Object.assign(Object.assign({}, DEFAULT_ONBOARDING_PARAMS), params);\n const encodedParams = coderFactory.createUiCreateOnboardingViewParamsCoder().encode(paramsWithDefaults);\n const data = Object.assign({ method: methodKey, onboarding: coder.encode(onboarding) }, encodedParams);\n const result = (await controller.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log));\n controller.id = result.id;\n await controller.setEventHandlers(DEFAULT_ONBOARDING_EVENT_HANDLERS);\n return controller;\n }\n /**\n * Since constructors in JS cannot be async, it is not\n * preferred to create ViewControllers in direct way.\n * Consider using @link{OnboardingViewController.create} instead\n *\n * @internal\n */\n constructor(adaptyPlugin) {\n this.id = null;\n this.viewEmitter = null;\n this.onRequestClose = async () => {\n try {\n await this.dismiss();\n }\n catch (error) {\n Log.warn('setEventHandlers', () => 'Failed to dismiss onboarding', () => ({ error }));\n }\n };\n this.adaptyPlugin = adaptyPlugin;\n }\n /**\n * Presents the onboarding view as a modal screen.\n *\n * @remarks\n * Calling `present` on an already visible onboarding view will result in an error.\n * The onboarding will be displayed with the configured presentation style on iOS.\n * On Android, the onboarding is always presented as a full-screen activity.\n *\n * @param options - Optional presentation options\n * @param options.iosPresentationStyle - iOS presentation style. Available options: `'full_screen'` (default) or `'page_sheet'`. Only affects iOS platform.\n * @returns A promise that resolves when the onboarding is presented.\n * @throws {@link AdaptyError} if the view reference is invalid or the view is already presented.\n *\n * @example\n * Present with default full-screen style\n * ```typescript\n * import { adapty, createOnboardingView } from '@adapty/capacitor';\n *\n * const onboarding = await adapty.getOnboarding({ placementId: 'YOUR_PLACEMENT_ID' });\n * const view = await createOnboardingView(onboarding);\n * await view.present();\n * ```\n *\n * @example\n * Present with page sheet style on iOS\n * ```typescript\n * await view.present({ iosPresentationStyle: 'page_sheet' });\n * ```\n */\n async present(options = {}) {\n var _a;\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_present_onboarding_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id, iosPresentationStyle: options.iosPresentationStyle }));\n if (this.id === null) {\n throw new AdaptyError({ adaptyCode: 2002, message: 'No view reference' });\n }\n const data = {\n method: methodKey,\n id: this.id,\n ios_presentation_style: (_a = options.iosPresentationStyle) !== null && _a !== void 0 ? _a : 'full_screen',\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n }\n /**\n * Dismisses the onboarding view.\n *\n * @remarks\n * This method closes the onboarding and cleans up associated resources.\n * After dismissing, the view controller instance cannot be reused.\n *\n * @returns A promise that resolves when the onboarding is dismissed.\n * @throws {@link AdaptyError} if the view reference is invalid.\n *\n * @example\n * ```typescript\n * import { createOnboardingView } from '@adapty/capacitor';\n *\n * const view = await createOnboardingView(onboarding);\n * await view.present();\n * // ... later\n * await view.dismiss();\n * ```\n */\n async dismiss() {\n const ctx = new LogContext();\n const methodKey = 'adapty_ui_dismiss_onboarding_view';\n const log = ctx.call({ methodName: methodKey });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({ adaptyCode: 2002, message: 'No view reference' });\n }\n const data = {\n method: methodKey,\n id: this.id,\n destroy: true,\n };\n await this.adaptyPlugin.handleMethodCall(methodKey, JSON.stringify(data), ctx, log);\n this.clearEventHandlers();\n }\n /**\n * Registers event handlers for onboarding UI events.\n *\n * @remarks\n * Each event type can have only one handler — new handlers replace existing ones.\n * Default handlers are registered automatically in {@link createOnboardingView} and provide standard closing behavior:\n * - `onClose` - closes the onboarding when the close button is pressed or system back is used\n *\n * If you want to override the `onClose` listener, we strongly recommend returning `true`\n * from your custom listener to retain default closing behavior.\n *\n * Calling this method multiple times will replace previously registered handlers for provided events.\n *\n * @see {@link https://adapty.io/docs/capacitor-handling-onboarding-events | Handling Onboarding Events}\n *\n * @param eventHandlers - Set of event handling callbacks. Only provided handlers will be registered or updated.\n * @returns A promise that resolves to an unsubscribe function that removes all registered listeners.\n *\n * @example\n * Register custom event handlers\n * ```typescript\n * import { createOnboardingView } from '@adapty/capacitor';\n *\n * const view = await createOnboardingView(onboarding);\n *\n * const unsubscribe = await view.setEventHandlers({\n * onClose: () => {\n * console.log('Onboarding closed');\n * // Return true to keep default closing behavior\n * return true;\n * },\n * onActionPerformed: (action) => {\n * console.log('Action performed:', action.name);\n * },\n * onProductSelected: (product) => {\n * console.log('Product selected:', product.vendorProductId);\n * }\n * });\n *\n * await view.present();\n *\n * // Later, unsubscribe all handlers\n * unsubscribe();\n * ```\n */\n async setEventHandlers(eventHandlers = {}) {\n var _a;\n const ctx = new LogContext();\n const log = ctx.call({ methodName: 'setEventHandlers' });\n log.start(() => ({ _id: this.id }));\n if (this.id === null) {\n throw new AdaptyError({ adaptyCode: 2002, message: 'No view reference' });\n }\n Log.verbose('setEventHandlers', () => 'Registering onboarding event handlers for view', () => ({ id: this.id }));\n const viewEmitter = (_a = this.viewEmitter) !== null && _a !== void 0 ? _a : new OnboardingViewEmitter(this.id);\n this.viewEmitter = viewEmitter;\n const wrappedErrorLogEventHandlers = mapValues(eventHandlers, (handler, eventName) => handler && typeof handler === 'function'\n ? withErrorContext(handler, eventName, 'OnboardingViewController')\n : undefined);\n // Merge with defaults to ensure default behavior is preserved after unsubscribe/resubscribe cycles\n const finalEventHandlers = Object.assign(Object.assign({}, DEFAULT_ONBOARDING_EVENT_HANDLERS), wrappedErrorLogEventHandlers);\n for (const [eventName, handler] of Object.entries(finalEventHandlers)) {\n if (handler && typeof handler === 'function') {\n try {\n await viewEmitter.addListener(eventName, handler, this.onRequestClose);\n Log.verbose('setEventHandlers', () => 'Registered onboarding handler', () => ({ eventName }));\n }\n catch (error) {\n Log.error('setEventHandlers', () => `Failed to register onboarding handler for ${eventName}`, () => ({ error }));\n }\n }\n }\n const unsubscribe = () => {\n Log.info('setEventHandlers', () => 'Unsubscribing onboarding event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n };\n return unsubscribe;\n }\n /**\n * Clears all registered event handlers.\n *\n * @remarks\n * This method removes all previously registered event handlers.\n * After calling this method, no event handlers will be active\n * until you call {@link setEventHandlers} again.\n *\n * Use this after dismiss to remove all event handlers.\n *\n * @example\n * ```typescript\n * const view = await createOnboardingView(onboarding);\n * await view.setEventHandlers({ onClose: handleClose });\n *\n * // Later, clear all handlers\n * view.clearEventHandlers();\n * ```\n */\n clearEventHandlers() {\n Log.info('clearEventHandlers', () => 'Clearing all onboarding event handlers for view', () => ({ id: this.id }));\n if (this.viewEmitter) {\n this.viewEmitter.removeAllListeners();\n this.viewEmitter = null;\n }\n }\n}\n//# sourceMappingURL=onboarding-view-controller.js.map","import { Adapty } from '../adapty';\nimport { PaywallViewController } from './paywall-view-controller';\nconst adaptyPlugin = new Adapty();\n/**\n * Creates a paywall view controller.\n * You can use it to further configure a view or present it.\n *\n * @see {@link https://adapty.io/docs/capacitor-present-paywalls | [DOC] Creating a paywall view}\n *\n * @param {AdaptyPaywall} paywall - paywall that you want to present.\n * @param {CreatePaywallViewParamsInput | undefined} [params] - additional params.\n * @returns {Promise<PaywallViewController>} ViewController — A promise that resolves to a ViewController instance.\n *\n * @example\n * ```ts\n * const paywall = await adapty.getPaywall(\"MY_PAYWALL\");\n * const view = await createPaywallView(paywall);\n * view.present();\n * ```\n *\n * @throws {AdaptyError} — If paywall is not found,\n * does not have a no-code view configured\n * or if there is an error while creating a view.\n */\nexport async function createPaywallView(paywall, params = {}) {\n const controller = await PaywallViewController.create(paywall, params, adaptyPlugin);\n return controller;\n}\n//# sourceMappingURL=create-paywall-view.js.map","import { Adapty } from '../adapty';\nimport { OnboardingViewController } from './onboarding-view-controller';\nconst adaptyPlugin = new Adapty();\n/**\n * Creates an onboarding view controller.\n * You can use it to further configure a view or present it.\n *\n * @see {@link https://adapty.io/docs/capacitor-get-onboardings | [DOC] Creating an onboarding view}\n *\n * @param {AdaptyOnboarding} onboarding - onboarding that you want to present.\n * @param {CreateOnboardingViewParamsInput | undefined} [params] - additional params.\n * @returns {Promise<OnboardingViewController>} ViewController — A promise that resolves to a ViewController instance.\n *\n * @example\n * ```ts\n * const onboarding = await adapty.getOnboarding({ placementId: 'MY_PLACEMENT' });\n * const view = await createOnboardingView(onboarding);\n * view.present();\n * ```\n *\n * @example\n * ```ts\n * const view = await createOnboardingView(onboarding, {\n * externalUrlsPresentation: WebPresentation.BrowserOutApp\n * });\n * ```\n *\n * @throws {AdaptyError} — If onboarding is not found,\n * does not have a no-code view configured\n * or if there is an error while creating a view.\n */\nexport async function createOnboardingView(onboarding, params = {}) {\n const controller = await OnboardingViewController.create(onboarding, adaptyPlugin, params);\n return controller;\n}\n//# sourceMappingURL=create-onboarding-view.js.map","import { Adapty } from './adapty';\nexport const adapty = new Adapty();\nexport { consoleLogSink } from './logger';\nexport { AdaptyError } from '@adapty/core';\nexport * from './types';\nexport { createPaywallView, PaywallViewController, createOnboardingView, OnboardingViewController, } from './ui-builder/index';\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class AdaptyCapacitorPluginWeb extends WebPlugin {\n addListener(eventName, listenerFunc) {\n return super.addListener(eventName, listenerFunc);\n }\n async removeAllListeners() {\n await super.removeAllListeners();\n }\n unsupported() {\n return this.unimplemented('[Adapty] Web platform is not supported');\n }\n handleMethodCall() {\n return Promise.reject(this.unsupported());\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["parseMethodResult","parseCommonEvent","parsePaywallEvent","parseOnboardingEvent","registerPlugin","Capacitor","_parseMethodResult","_parseCommonEvent","_parsePaywallEvent","HANDLER_TO_NATIVE_EVENT","NATIVE_EVENT_RESOLVER","extractCallbackArgs","_parseOnboardingEvent","adaptyPlugin","WebPlugin"],"mappings":"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","x_google_ignoreList":[0]}