@qonversion/react-native-sdk 10.0.0-RC1

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 (290) hide show
  1. package/README.md +129 -0
  2. package/android/build.gradle +92 -0
  3. package/android/gradle.properties +6 -0
  4. package/android/src/main/AndroidManifest.xml +2 -0
  5. package/android/src/main/java/com/qonversion/reactnativesdk/EntitiesConverter.kt +135 -0
  6. package/android/src/main/java/com/qonversion/reactnativesdk/NoCodesModule.kt +76 -0
  7. package/android/src/main/java/com/qonversion/reactnativesdk/QonversionModule.kt +278 -0
  8. package/android/src/main/java/com/qonversion/reactnativesdk/QonversionPackage.kt +43 -0
  9. package/android/src/main/java/com/qonversion/reactnativesdk/Utils.kt +32 -0
  10. package/ios/RNNoCodes.h +5 -0
  11. package/ios/RNNoCodes.mm +61 -0
  12. package/ios/RNNoCodesImpl.swift +69 -0
  13. package/ios/RNQonversion.h +5 -0
  14. package/ios/RNQonversion.mm +189 -0
  15. package/ios/RNQonversionImpl.swift +250 -0
  16. package/ios/qonversion-react-native-sdk-Bridging-Header.h +6 -0
  17. package/lib/module/NoCodes.js +32 -0
  18. package/lib/module/NoCodes.js.map +1 -0
  19. package/lib/module/NoCodesApi.js +2 -0
  20. package/lib/module/NoCodesApi.js.map +1 -0
  21. package/lib/module/NoCodesConfig.js +10 -0
  22. package/lib/module/NoCodesConfig.js.map +1 -0
  23. package/lib/module/NoCodesConfigBuilder.js +35 -0
  24. package/lib/module/NoCodesConfigBuilder.js.map +1 -0
  25. package/lib/module/Qonversion.js +35 -0
  26. package/lib/module/Qonversion.js.map +1 -0
  27. package/lib/module/QonversionApi.js +4 -0
  28. package/lib/module/QonversionApi.js.map +1 -0
  29. package/lib/module/QonversionConfig.js +16 -0
  30. package/lib/module/QonversionConfig.js.map +1 -0
  31. package/lib/module/QonversionConfigBuilder.js +90 -0
  32. package/lib/module/QonversionConfigBuilder.js.map +1 -0
  33. package/lib/module/dto/Entitlement.js +24 -0
  34. package/lib/module/dto/Entitlement.js.map +1 -0
  35. package/lib/module/dto/EntitlementsUpdateListener.js +4 -0
  36. package/lib/module/dto/EntitlementsUpdateListener.js.map +1 -0
  37. package/lib/module/dto/Experiment.js +11 -0
  38. package/lib/module/dto/Experiment.js.map +1 -0
  39. package/lib/module/dto/ExperimentGroup.js +11 -0
  40. package/lib/module/dto/ExperimentGroup.js.map +1 -0
  41. package/lib/module/dto/IntroEligibility.js +9 -0
  42. package/lib/module/dto/IntroEligibility.js.map +1 -0
  43. package/lib/module/dto/NoCodesAction.js +11 -0
  44. package/lib/module/dto/NoCodesAction.js.map +1 -0
  45. package/lib/module/dto/NoCodesError.js +13 -0
  46. package/lib/module/dto/NoCodesError.js.map +1 -0
  47. package/lib/module/dto/NoCodesListener.js +4 -0
  48. package/lib/module/dto/NoCodesListener.js.map +1 -0
  49. package/lib/module/dto/Offering.js +14 -0
  50. package/lib/module/dto/Offering.js.map +1 -0
  51. package/lib/module/dto/Offerings.js +13 -0
  52. package/lib/module/dto/Offerings.js.map +1 -0
  53. package/lib/module/dto/Product.js +114 -0
  54. package/lib/module/dto/Product.js.map +1 -0
  55. package/lib/module/dto/PromoPurchasesListener.js +4 -0
  56. package/lib/module/dto/PromoPurchasesListener.js.map +1 -0
  57. package/lib/module/dto/PromotionalOffer.js +10 -0
  58. package/lib/module/dto/PromotionalOffer.js.map +1 -0
  59. package/lib/module/dto/PurchaseModel.js +26 -0
  60. package/lib/module/dto/PurchaseModel.js.map +1 -0
  61. package/lib/module/dto/PurchaseOptions.js +15 -0
  62. package/lib/module/dto/PurchaseOptions.js.map +1 -0
  63. package/lib/module/dto/PurchaseOptionsBuilder.js +117 -0
  64. package/lib/module/dto/PurchaseOptionsBuilder.js.map +1 -0
  65. package/lib/module/dto/PurchaseUpdateModel.js +32 -0
  66. package/lib/module/dto/PurchaseUpdateModel.js.map +1 -0
  67. package/lib/module/dto/QonversionError.js +15 -0
  68. package/lib/module/dto/QonversionError.js.map +1 -0
  69. package/lib/module/dto/RemoteConfig.js +11 -0
  70. package/lib/module/dto/RemoteConfig.js.map +1 -0
  71. package/lib/module/dto/RemoteConfigList.js +18 -0
  72. package/lib/module/dto/RemoteConfigList.js.map +1 -0
  73. package/lib/module/dto/RemoteConfigurationSource.js +13 -0
  74. package/lib/module/dto/RemoteConfigurationSource.js.map +1 -0
  75. package/lib/module/dto/ScreenPresentationConfig.js +22 -0
  76. package/lib/module/dto/ScreenPresentationConfig.js.map +1 -0
  77. package/lib/module/dto/SubscriptionPeriod.js +26 -0
  78. package/lib/module/dto/SubscriptionPeriod.js.map +1 -0
  79. package/lib/module/dto/Transaction.js +18 -0
  80. package/lib/module/dto/Transaction.js.map +1 -0
  81. package/lib/module/dto/User.js +10 -0
  82. package/lib/module/dto/User.js.map +1 -0
  83. package/lib/module/dto/UserProperties.js +71 -0
  84. package/lib/module/dto/UserProperties.js.map +1 -0
  85. package/lib/module/dto/UserProperty.js +17 -0
  86. package/lib/module/dto/UserProperty.js.map +1 -0
  87. package/lib/module/dto/enums.js +425 -0
  88. package/lib/module/dto/enums.js.map +1 -0
  89. package/lib/module/dto/storeProducts/ProductInAppDetails.js +16 -0
  90. package/lib/module/dto/storeProducts/ProductInAppDetails.js.map +1 -0
  91. package/lib/module/dto/storeProducts/ProductInstallmentPlanDetails.js +25 -0
  92. package/lib/module/dto/storeProducts/ProductInstallmentPlanDetails.js.map +1 -0
  93. package/lib/module/dto/storeProducts/ProductOfferDetails.js +76 -0
  94. package/lib/module/dto/storeProducts/ProductOfferDetails.js.map +1 -0
  95. package/lib/module/dto/storeProducts/ProductPrice.js +37 -0
  96. package/lib/module/dto/storeProducts/ProductPrice.js.map +1 -0
  97. package/lib/module/dto/storeProducts/ProductPricingPhase.js +52 -0
  98. package/lib/module/dto/storeProducts/ProductPricingPhase.js.map +1 -0
  99. package/lib/module/dto/storeProducts/ProductStoreDetails.js +114 -0
  100. package/lib/module/dto/storeProducts/ProductStoreDetails.js.map +1 -0
  101. package/lib/module/dto/storeProducts/SKPaymentDiscount.js +13 -0
  102. package/lib/module/dto/storeProducts/SKPaymentDiscount.js.map +1 -0
  103. package/lib/module/dto/storeProducts/SKProduct.js +22 -0
  104. package/lib/module/dto/storeProducts/SKProduct.js.map +1 -0
  105. package/lib/module/dto/storeProducts/SKProductDiscount.js +16 -0
  106. package/lib/module/dto/storeProducts/SKProductDiscount.js.map +1 -0
  107. package/lib/module/dto/storeProducts/SKSubscriptionPeriod.js +10 -0
  108. package/lib/module/dto/storeProducts/SKSubscriptionPeriod.js.map +1 -0
  109. package/lib/module/dto/storeProducts/SkuDetails.js +30 -0
  110. package/lib/module/dto/storeProducts/SkuDetails.js.map +1 -0
  111. package/lib/module/index.js +40 -0
  112. package/lib/module/index.js.map +1 -0
  113. package/lib/module/internal/Mapper.js +676 -0
  114. package/lib/module/internal/Mapper.js.map +1 -0
  115. package/lib/module/internal/NoCodesInternal.js +70 -0
  116. package/lib/module/internal/NoCodesInternal.js.map +1 -0
  117. package/lib/module/internal/QonversionInternal.js +237 -0
  118. package/lib/module/internal/QonversionInternal.js.map +1 -0
  119. package/lib/module/internal/specs/NativeNoCodesModule.js +5 -0
  120. package/lib/module/internal/specs/NativeNoCodesModule.js.map +1 -0
  121. package/lib/module/internal/specs/NativeQonversionModule.js +5 -0
  122. package/lib/module/internal/specs/NativeQonversionModule.js.map +1 -0
  123. package/lib/module/internal/utils.js +10 -0
  124. package/lib/module/internal/utils.js.map +1 -0
  125. package/lib/module/package.json +1 -0
  126. package/lib/typescript/package.json +1 -0
  127. package/lib/typescript/src/NoCodes.d.ts +23 -0
  128. package/lib/typescript/src/NoCodes.d.ts.map +1 -0
  129. package/lib/typescript/src/NoCodesApi.d.ts +20 -0
  130. package/lib/typescript/src/NoCodesApi.d.ts.map +1 -0
  131. package/lib/typescript/src/NoCodesConfig.d.ts +8 -0
  132. package/lib/typescript/src/NoCodesConfig.d.ts.map +1 -0
  133. package/lib/typescript/src/NoCodesConfigBuilder.d.ts +26 -0
  134. package/lib/typescript/src/NoCodesConfigBuilder.d.ts.map +1 -0
  135. package/lib/typescript/src/Qonversion.d.ts +26 -0
  136. package/lib/typescript/src/Qonversion.d.ts.map +1 -0
  137. package/lib/typescript/src/QonversionApi.d.ts +285 -0
  138. package/lib/typescript/src/QonversionApi.d.ts.map +1 -0
  139. package/lib/typescript/src/QonversionConfig.d.ts +14 -0
  140. package/lib/typescript/src/QonversionConfig.d.ts.map +1 -0
  141. package/lib/typescript/src/QonversionConfigBuilder.d.ts +65 -0
  142. package/lib/typescript/src/QonversionConfigBuilder.d.ts.map +1 -0
  143. package/lib/typescript/src/dto/Entitlement.d.ts +22 -0
  144. package/lib/typescript/src/dto/Entitlement.d.ts.map +1 -0
  145. package/lib/typescript/src/dto/EntitlementsUpdateListener.d.ts +10 -0
  146. package/lib/typescript/src/dto/EntitlementsUpdateListener.d.ts.map +1 -0
  147. package/lib/typescript/src/dto/Experiment.d.ts +9 -0
  148. package/lib/typescript/src/dto/Experiment.d.ts.map +1 -0
  149. package/lib/typescript/src/dto/ExperimentGroup.d.ts +9 -0
  150. package/lib/typescript/src/dto/ExperimentGroup.d.ts.map +1 -0
  151. package/lib/typescript/src/dto/IntroEligibility.d.ts +7 -0
  152. package/lib/typescript/src/dto/IntroEligibility.d.ts.map +1 -0
  153. package/lib/typescript/src/dto/NoCodesAction.d.ts +10 -0
  154. package/lib/typescript/src/dto/NoCodesAction.d.ts.map +1 -0
  155. package/lib/typescript/src/dto/NoCodesError.d.ts +12 -0
  156. package/lib/typescript/src/dto/NoCodesError.d.ts.map +1 -0
  157. package/lib/typescript/src/dto/NoCodesListener.d.ts +34 -0
  158. package/lib/typescript/src/dto/NoCodesListener.d.ts.map +1 -0
  159. package/lib/typescript/src/dto/Offering.d.ts +11 -0
  160. package/lib/typescript/src/dto/Offering.d.ts.map +1 -0
  161. package/lib/typescript/src/dto/Offerings.d.ts +9 -0
  162. package/lib/typescript/src/dto/Offerings.d.ts.map +1 -0
  163. package/lib/typescript/src/dto/Product.d.ts +95 -0
  164. package/lib/typescript/src/dto/Product.d.ts.map +1 -0
  165. package/lib/typescript/src/dto/PromoPurchasesListener.d.ts +12 -0
  166. package/lib/typescript/src/dto/PromoPurchasesListener.d.ts.map +1 -0
  167. package/lib/typescript/src/dto/PromotionalOffer.d.ts +9 -0
  168. package/lib/typescript/src/dto/PromotionalOffer.d.ts.map +1 -0
  169. package/lib/typescript/src/dto/PurchaseModel.d.ts +19 -0
  170. package/lib/typescript/src/dto/PurchaseModel.d.ts.map +1 -0
  171. package/lib/typescript/src/dto/PurchaseOptions.d.ts +15 -0
  172. package/lib/typescript/src/dto/PurchaseOptions.d.ts.map +1 -0
  173. package/lib/typescript/src/dto/PurchaseOptionsBuilder.d.ts +84 -0
  174. package/lib/typescript/src/dto/PurchaseOptionsBuilder.d.ts.map +1 -0
  175. package/lib/typescript/src/dto/PurchaseUpdateModel.d.ts +25 -0
  176. package/lib/typescript/src/dto/PurchaseUpdateModel.d.ts.map +1 -0
  177. package/lib/typescript/src/dto/QonversionError.d.ts +11 -0
  178. package/lib/typescript/src/dto/QonversionError.d.ts.map +1 -0
  179. package/lib/typescript/src/dto/RemoteConfig.d.ts +10 -0
  180. package/lib/typescript/src/dto/RemoteConfig.d.ts.map +1 -0
  181. package/lib/typescript/src/dto/RemoteConfigList.d.ts +10 -0
  182. package/lib/typescript/src/dto/RemoteConfigList.d.ts.map +1 -0
  183. package/lib/typescript/src/dto/RemoteConfigurationSource.d.ts +11 -0
  184. package/lib/typescript/src/dto/RemoteConfigurationSource.d.ts.map +1 -0
  185. package/lib/typescript/src/dto/ScreenPresentationConfig.d.ts +18 -0
  186. package/lib/typescript/src/dto/ScreenPresentationConfig.d.ts.map +1 -0
  187. package/lib/typescript/src/dto/SubscriptionPeriod.d.ts +21 -0
  188. package/lib/typescript/src/dto/SubscriptionPeriod.d.ts.map +1 -0
  189. package/lib/typescript/src/dto/Transaction.d.ts +16 -0
  190. package/lib/typescript/src/dto/Transaction.d.ts.map +1 -0
  191. package/lib/typescript/src/dto/User.d.ts +7 -0
  192. package/lib/typescript/src/dto/User.d.ts.map +1 -0
  193. package/lib/typescript/src/dto/UserProperties.d.ts +49 -0
  194. package/lib/typescript/src/dto/UserProperties.d.ts.map +1 -0
  195. package/lib/typescript/src/dto/UserProperty.d.ts +13 -0
  196. package/lib/typescript/src/dto/UserProperty.d.ts.map +1 -0
  197. package/lib/typescript/src/dto/enums.d.ts +343 -0
  198. package/lib/typescript/src/dto/enums.d.ts.map +1 -0
  199. package/lib/typescript/src/dto/storeProducts/ProductInAppDetails.d.ts +13 -0
  200. package/lib/typescript/src/dto/storeProducts/ProductInAppDetails.d.ts.map +1 -0
  201. package/lib/typescript/src/dto/storeProducts/ProductInstallmentPlanDetails.d.ts +20 -0
  202. package/lib/typescript/src/dto/storeProducts/ProductInstallmentPlanDetails.d.ts.map +1 -0
  203. package/lib/typescript/src/dto/storeProducts/ProductOfferDetails.d.ts +63 -0
  204. package/lib/typescript/src/dto/storeProducts/ProductOfferDetails.d.ts.map +1 -0
  205. package/lib/typescript/src/dto/storeProducts/ProductPrice.d.ts +29 -0
  206. package/lib/typescript/src/dto/storeProducts/ProductPrice.d.ts.map +1 -0
  207. package/lib/typescript/src/dto/storeProducts/ProductPricingPhase.d.ts +44 -0
  208. package/lib/typescript/src/dto/storeProducts/ProductPricingPhase.d.ts.map +1 -0
  209. package/lib/typescript/src/dto/storeProducts/ProductStoreDetails.d.ts +97 -0
  210. package/lib/typescript/src/dto/storeProducts/ProductStoreDetails.d.ts.map +1 -0
  211. package/lib/typescript/src/dto/storeProducts/SKPaymentDiscount.d.ts +10 -0
  212. package/lib/typescript/src/dto/storeProducts/SKPaymentDiscount.d.ts.map +1 -0
  213. package/lib/typescript/src/dto/storeProducts/SKProduct.d.ts +21 -0
  214. package/lib/typescript/src/dto/storeProducts/SKProduct.d.ts.map +1 -0
  215. package/lib/typescript/src/dto/storeProducts/SKProductDiscount.d.ts +15 -0
  216. package/lib/typescript/src/dto/storeProducts/SKProductDiscount.d.ts.map +1 -0
  217. package/lib/typescript/src/dto/storeProducts/SKSubscriptionPeriod.d.ts +8 -0
  218. package/lib/typescript/src/dto/storeProducts/SKSubscriptionPeriod.d.ts.map +1 -0
  219. package/lib/typescript/src/dto/storeProducts/SkuDetails.d.ts +27 -0
  220. package/lib/typescript/src/dto/storeProducts/SkuDetails.d.ts.map +1 -0
  221. package/lib/typescript/src/index.d.ts +41 -0
  222. package/lib/typescript/src/index.d.ts.map +1 -0
  223. package/lib/typescript/src/internal/Mapper.d.ts +312 -0
  224. package/lib/typescript/src/internal/Mapper.d.ts.map +1 -0
  225. package/lib/typescript/src/internal/NoCodesInternal.d.ts +14 -0
  226. package/lib/typescript/src/internal/NoCodesInternal.d.ts.map +1 -0
  227. package/lib/typescript/src/internal/QonversionInternal.d.ts +60 -0
  228. package/lib/typescript/src/internal/QonversionInternal.d.ts.map +1 -0
  229. package/lib/typescript/src/internal/specs/NativeNoCodesModule.d.ts +17 -0
  230. package/lib/typescript/src/internal/specs/NativeNoCodesModule.d.ts.map +1 -0
  231. package/lib/typescript/src/internal/specs/NativeQonversionModule.d.ts +56 -0
  232. package/lib/typescript/src/internal/specs/NativeQonversionModule.d.ts.map +1 -0
  233. package/lib/typescript/src/internal/utils.d.ts +3 -0
  234. package/lib/typescript/src/internal/utils.d.ts.map +1 -0
  235. package/package.json +151 -0
  236. package/qonversion-react-native-sdk.podspec +21 -0
  237. package/src/NoCodes.ts +37 -0
  238. package/src/NoCodesApi.ts +22 -0
  239. package/src/NoCodesConfig.ts +16 -0
  240. package/src/NoCodesConfigBuilder.ts +40 -0
  241. package/src/Qonversion.ts +40 -0
  242. package/src/QonversionApi.ts +318 -0
  243. package/src/QonversionConfig.ts +32 -0
  244. package/src/QonversionConfigBuilder.ts +102 -0
  245. package/src/dto/Entitlement.ts +57 -0
  246. package/src/dto/EntitlementsUpdateListener.ts +11 -0
  247. package/src/dto/Experiment.ts +15 -0
  248. package/src/dto/ExperimentGroup.ts +15 -0
  249. package/src/dto/IntroEligibility.ts +11 -0
  250. package/src/dto/NoCodesAction.ts +21 -0
  251. package/src/dto/NoCodesError.ts +26 -0
  252. package/src/dto/NoCodesListener.ts +39 -0
  253. package/src/dto/Offering.ts +20 -0
  254. package/src/dto/Offerings.ts +17 -0
  255. package/src/dto/Product.ts +159 -0
  256. package/src/dto/PromoPurchasesListener.ts +13 -0
  257. package/src/dto/PromotionalOffer.ts +17 -0
  258. package/src/dto/PurchaseModel.ts +29 -0
  259. package/src/dto/PurchaseOptions.ts +33 -0
  260. package/src/dto/PurchaseOptionsBuilder.ts +127 -0
  261. package/src/dto/PurchaseUpdateModel.ts +43 -0
  262. package/src/dto/QonversionError.ts +24 -0
  263. package/src/dto/RemoteConfig.ts +16 -0
  264. package/src/dto/RemoteConfigList.ts +23 -0
  265. package/src/dto/RemoteConfigurationSource.ts +26 -0
  266. package/src/dto/ScreenPresentationConfig.ts +24 -0
  267. package/src/dto/SubscriptionPeriod.ts +33 -0
  268. package/src/dto/Transaction.ts +40 -0
  269. package/src/dto/User.ts +11 -0
  270. package/src/dto/UserProperties.ts +78 -0
  271. package/src/dto/UserProperty.ts +21 -0
  272. package/src/dto/enums.ts +389 -0
  273. package/src/dto/storeProducts/ProductInAppDetails.ts +17 -0
  274. package/src/dto/storeProducts/ProductInstallmentPlanDetails.ts +28 -0
  275. package/src/dto/storeProducts/ProductOfferDetails.ts +102 -0
  276. package/src/dto/storeProducts/ProductPrice.ts +46 -0
  277. package/src/dto/storeProducts/ProductPricingPhase.ts +71 -0
  278. package/src/dto/storeProducts/ProductStoreDetails.ts +151 -0
  279. package/src/dto/storeProducts/SKPaymentDiscount.ts +23 -0
  280. package/src/dto/storeProducts/SKProduct.ts +53 -0
  281. package/src/dto/storeProducts/SKProductDiscount.ts +38 -0
  282. package/src/dto/storeProducts/SKSubscriptionPeriod.ts +13 -0
  283. package/src/dto/storeProducts/SkuDetails.ts +68 -0
  284. package/src/index.ts +43 -0
  285. package/src/internal/Mapper.ts +1221 -0
  286. package/src/internal/NoCodesInternal.ts +84 -0
  287. package/src/internal/QonversionInternal.ts +370 -0
  288. package/src/internal/specs/NativeNoCodesModule.ts +20 -0
  289. package/src/internal/specs/NativeQonversionModule.ts +74 -0
  290. package/src/internal/utils.ts +9 -0
@@ -0,0 +1 @@
1
+ {"version":3,"names":["UserPropertyKey","UserProperties","constructor","properties","definedProperties","filter","property","definedKey","CUSTOM","customProperties","flatPropertiesMap","Map","flatDefinedPropertiesMap","flatCustomPropertiesMap","forEach","set","key","value","getProperty","find","userProperty","getDefinedProperty"],"sourceRoot":"../../../src","sources":["dto/UserProperties.ts"],"mappings":";;AACA,SAAQA,eAAe,QAAO,YAAS;AAEvC,MAAMC,cAAc,CAAC;EACnB;AACF;AACA;;EAGE;AACF;AACA;AACA;AACA;;EAGE;AACF;AACA;AACA;AACA;;EAGE;AACF;AACA;AACA;;EAGE;AACF;AACA;AACA;AACA;;EAGE;AACF;AACA;AACA;AACA;;EAGEC,WAAWA,CAACC,UAA0B,EAAE;IACtC,IAAI,CAACA,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,iBAAiB,GAAGD,UAAU,CAACE,MAAM,CAACC,QAAQ,IAAIA,QAAQ,CAACC,UAAU,KAAKP,eAAe,CAACQ,MAAM,CAAC;IACtG,IAAI,CAACC,gBAAgB,GAAGN,UAAU,CAACE,MAAM,CAACC,QAAQ,IAAIA,QAAQ,CAACC,UAAU,KAAKP,eAAe,CAACQ,MAAM,CAAC;IAErG,IAAI,CAACE,iBAAiB,GAAG,IAAIC,GAAG,CAAiB,CAAC;IAClD,IAAI,CAACC,wBAAwB,GAAG,IAAID,GAAG,CAA0B,CAAC;IAClE,IAAI,CAACE,uBAAuB,GAAG,IAAIF,GAAG,CAAiB,CAAC;IACxDR,UAAU,CAACW,OAAO,CAACR,QAAQ,IAAI;MAC7B,IAAI,CAACI,iBAAiB,CAACK,GAAG,CAACT,QAAQ,CAACU,GAAG,EAAEV,QAAQ,CAACW,KAAK,CAAC;MACxD,IAAIX,QAAQ,CAACC,UAAU,IAAIP,eAAe,CAACQ,MAAM,EAAE;QACjD,IAAI,CAACK,uBAAuB,CAACE,GAAG,CAACT,QAAQ,CAACU,GAAG,EAAEV,QAAQ,CAACW,KAAK,CAAC;MAChE,CAAC,MAAM;QACL,IAAI,CAACL,wBAAwB,CAACG,GAAG,CAACT,QAAQ,CAACC,UAAU,EAAED,QAAQ,CAACW,KAAK,CAAC;MACxE;IACF,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;EACEC,WAAWA,CAACF,GAAW,EAA4B;IACjD,OAAO,IAAI,CAACb,UAAU,CAACgB,IAAI,CAACC,YAAY,IAAIA,YAAY,CAACJ,GAAG,IAAIA,GAAG,CAAC;EACtE;;EAEA;AACF;AACA;AACA;EACEK,kBAAkBA,CAACL,GAAoB,EAA4B;IACjE,OAAO,IAAI,CAACZ,iBAAiB,CAACe,IAAI,CAACC,YAAY,IAAIA,YAAY,CAACb,UAAU,IAAIS,GAAG,CAAC;EACpF;AACF;AAEA,eAAef,cAAc","ignoreList":[]}
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ import mapper from "../internal/Mapper.js";
4
+ class UserProperty {
5
+ /**
6
+ * {@link UserPropertyKey} used to set this property.
7
+ * Returns {@link UserPropertyKey.CUSTOM} for custom properties.
8
+ */
9
+
10
+ constructor(key, value) {
11
+ this.key = key;
12
+ this.value = value;
13
+ this.definedKey = mapper.convertDefinedUserPropertyKey(key);
14
+ }
15
+ }
16
+ export default UserProperty;
17
+ //# sourceMappingURL=UserProperty.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["mapper","UserProperty","constructor","key","value","definedKey","convertDefinedUserPropertyKey"],"sourceRoot":"../../../src","sources":["dto/UserProperty.ts"],"mappings":";;AACA,OAAOA,MAAM,MAAM,uBAAoB;AAEvC,MAAMC,YAAY,CAAC;EAIjB;AACF;AACA;AACA;;EAGEC,WAAWA,CAACC,GAAW,EAAEC,KAAa,EAAE;IACtC,IAAI,CAACD,GAAG,GAAGA,GAAG;IACd,IAAI,CAACC,KAAK,GAAGA,KAAK;IAClB,IAAI,CAACC,UAAU,GAAGL,MAAM,CAACM,6BAA6B,CAACH,GAAG,CAAC;EAC7D;AACF;AAEA,eAAeF,YAAY","ignoreList":[]}
@@ -0,0 +1,425 @@
1
+ "use strict";
2
+
3
+ export let LaunchMode = /*#__PURE__*/function (LaunchMode) {
4
+ LaunchMode["ANALYTICS"] = "Analytics";
5
+ LaunchMode["SUBSCRIPTION_MANAGEMENT"] = "SubscriptionManagement";
6
+ return LaunchMode;
7
+ }({});
8
+ export let Environment = /*#__PURE__*/function (Environment) {
9
+ Environment["SANDBOX"] = "Sandbox";
10
+ Environment["PRODUCTION"] = "Production";
11
+ return Environment;
12
+ }({});
13
+ export let ProductType = /*#__PURE__*/function (ProductType) {
14
+ ProductType["TRIAL"] = "Trial";
15
+ ProductType["INTRO"] = "Intro";
16
+ /** Currently works for Android only. iOS support will be added soon. */
17
+ ProductType["SUBSCRIPTION"] = "Subscription";
18
+ ProductType["IN_APP"] = "InApp";
19
+ ProductType["UNKNOWN"] = "Unknown";
20
+ return ProductType;
21
+ }({});
22
+ export let SubscriptionPeriodUnit = /*#__PURE__*/function (SubscriptionPeriodUnit) {
23
+ SubscriptionPeriodUnit["DAY"] = "Day";
24
+ SubscriptionPeriodUnit["WEEK"] = "Week";
25
+ SubscriptionPeriodUnit["MONTH"] = "Month";
26
+ SubscriptionPeriodUnit["YEAR"] = "Year";
27
+ SubscriptionPeriodUnit["UNKNOWN"] = "Unknown";
28
+ return SubscriptionPeriodUnit;
29
+ }({});
30
+
31
+ /**
32
+ * Recurrence mode of the pricing phase.
33
+ */
34
+ export let PricingPhaseRecurrenceMode = /*#__PURE__*/function (PricingPhaseRecurrenceMode) {
35
+ /**
36
+ * The billing plan payment recurs for infinite billing periods unless canceled.
37
+ */
38
+ PricingPhaseRecurrenceMode["INFINITE_RECURRING"] = "InfiniteRecurring";
39
+ /**
40
+ * The billing plan payment recurs for a fixed number of billing periods
41
+ * set in {@link ProductPricingPhase.billingCycleCount}.
42
+ */
43
+ PricingPhaseRecurrenceMode["FINITE_RECURRING"] = "FiniteRecurring";
44
+ /**
45
+ * The billing plan payment is a one-time charge that does not repeat.
46
+ */
47
+ PricingPhaseRecurrenceMode["NON_RECURRING"] = "NonRecurring";
48
+ /**
49
+ * Unknown recurrence mode.
50
+ */
51
+ PricingPhaseRecurrenceMode["UNKNOWN"] = "Unknown";
52
+ return PricingPhaseRecurrenceMode;
53
+ }({});
54
+
55
+ /**
56
+ * Type of the pricing phase.
57
+ */
58
+ export let PricingPhaseType = /*#__PURE__*/function (PricingPhaseType) {
59
+ /**
60
+ * Regular subscription without any discounts like trial or intro offers.
61
+ */
62
+ PricingPhaseType["REGULAR"] = "Regular";
63
+ /**
64
+ * A free phase.
65
+ */
66
+ PricingPhaseType["FREE_TRIAL"] = "FreeTrial";
67
+ /**
68
+ * A phase with a discounted payment for a single period.
69
+ */
70
+ PricingPhaseType["DISCOUNTED_SINGLE_PAYMENT"] = "DiscountedSinglePayment";
71
+ /**
72
+ * A phase with a discounted payment for several periods, described in {@link ProductPricingPhase.billingCycleCount}.
73
+ */
74
+ PricingPhaseType["DISCOUNTED_RECURRING_PAYMENT"] = "DiscountedRecurringPayment";
75
+ /**
76
+ * Unknown pricing phase type.
77
+ */
78
+ PricingPhaseType["UNKNOWN"] = "Unknown";
79
+ return PricingPhaseType;
80
+ }({});
81
+ export let EntitlementRenewState = /*#__PURE__*/function (EntitlementRenewState) {
82
+ EntitlementRenewState["NON_RENEWABLE"] = "non_renewable";
83
+ EntitlementRenewState["UNKNOWN"] = "unknown";
84
+ EntitlementRenewState["WILL_RENEW"] = "will_renew";
85
+ EntitlementRenewState["CANCELED"] = "canceled";
86
+ EntitlementRenewState["BILLING_ISSUE"] = "billing_issue";
87
+ return EntitlementRenewState;
88
+ }({});
89
+ export let EntitlementSource = /*#__PURE__*/function (EntitlementSource) {
90
+ EntitlementSource["UNKNOWN"] = "Unknown";
91
+ EntitlementSource["APP_STORE"] = "AppStore";
92
+ EntitlementSource["PLAY_STORE"] = "PlayStore";
93
+ EntitlementSource["STRIPE"] = "Stripe";
94
+ EntitlementSource["MANUAL"] = "Manual";
95
+ return EntitlementSource;
96
+ }({});
97
+ export let TransactionEnvironment = /*#__PURE__*/function (TransactionEnvironment) {
98
+ TransactionEnvironment["PRODUCTION"] = "Production";
99
+ TransactionEnvironment["SANDBOX"] = "Sandbox";
100
+ return TransactionEnvironment;
101
+ }({});
102
+ export let TransactionOwnershipType = /*#__PURE__*/function (TransactionOwnershipType) {
103
+ TransactionOwnershipType["OWNER"] = "Owner";
104
+ TransactionOwnershipType["FAMILY_SHARING"] = "FamilySharing";
105
+ return TransactionOwnershipType;
106
+ }({});
107
+ export let EntitlementGrantType = /*#__PURE__*/function (EntitlementGrantType) {
108
+ EntitlementGrantType["PURCHASE"] = "Purchase";
109
+ EntitlementGrantType["FAMILY_SHARING"] = "FamilySharing";
110
+ EntitlementGrantType["OFFER_CODE"] = "OfferCode";
111
+ EntitlementGrantType["MANUAL"] = "Manual";
112
+ return EntitlementGrantType;
113
+ }({});
114
+ export let TransactionType = /*#__PURE__*/function (TransactionType) {
115
+ TransactionType["UNKNOWN"] = "Unknown";
116
+ TransactionType["SUBSCRIPTION_STARTED"] = "SubscriptionStarted";
117
+ TransactionType["SUBSCRIPTION_RENEWED"] = "SubscriptionRenewed";
118
+ TransactionType["TRIAL_STARTED"] = "TrialStarted";
119
+ TransactionType["INTRO_STARTED"] = "IntroStarted";
120
+ TransactionType["INTRO_RENEWED"] = "IntroRenewed";
121
+ TransactionType["NON_CONSUMABLE_PURCHASE"] = "NonConsumablePurchase";
122
+ return TransactionType;
123
+ }({});
124
+ export let UserPropertyKey = /*#__PURE__*/function (UserPropertyKey) {
125
+ UserPropertyKey["EMAIL"] = "Email";
126
+ UserPropertyKey["NAME"] = "Name";
127
+ UserPropertyKey["KOCHAVA_DEVICE_ID"] = "KochavaDeviceId";
128
+ UserPropertyKey["APPS_FLYER_USER_ID"] = "AppsFlyerUserId";
129
+ UserPropertyKey["ADJUST_AD_ID"] = "AdjustAdId";
130
+ UserPropertyKey["CUSTOM_USER_ID"] = "CustomUserId";
131
+ UserPropertyKey["FACEBOOK_ATTRIBUTION"] = "FacebookAttribution";
132
+ // Android only
133
+ UserPropertyKey["FIREBASE_APP_INSTANCE_ID"] = "FirebaseAppInstanceId";
134
+ UserPropertyKey["APP_SET_ID"] = "AppSetId";
135
+ // Android only
136
+ UserPropertyKey["ADVERTISING_ID"] = "AdvertisingId";
137
+ // iOS only
138
+ UserPropertyKey["APP_METRICA_DEVICE_ID"] = "AppMetricaDeviceId";
139
+ UserPropertyKey["APP_METRICA_USER_PROFILE_ID"] = "AppMetricaUserProfileId";
140
+ UserPropertyKey["PUSH_WOOSH_HW_ID"] = "PushWooshHwId";
141
+ UserPropertyKey["PUSH_WOOSH_USER_ID"] = "PushWooshUserId";
142
+ UserPropertyKey["TENJIN_ANALYTICS_INSTALLATION_ID"] = "TenjinAnalyticsInstallationId";
143
+ UserPropertyKey["CUSTOM"] = "Custom";
144
+ return UserPropertyKey;
145
+ }({});
146
+ export let AttributionProvider = /*#__PURE__*/function (AttributionProvider) {
147
+ AttributionProvider["APPSFLYER"] = "AppsFlyer";
148
+ AttributionProvider["BRANCH"] = "Branch";
149
+ AttributionProvider["ADJUST"] = "Adjust";
150
+ AttributionProvider["APPLE_SEARCH_ADS"] = "AppleSearchAds";
151
+ // ios only
152
+ AttributionProvider["APPLE_AD_SERVICES"] = "AppleAdServices"; // ios only
153
+ return AttributionProvider;
154
+ }({});
155
+
156
+ /**
157
+ * A policy used for purchase updates on Android, which describes
158
+ * how to migrate from purchased plan to a new one.
159
+ *
160
+ * Used in {@link PurchaseOptions} class for purchase updates.
161
+ */
162
+ export let PurchaseUpdatePolicy = /*#__PURE__*/function (PurchaseUpdatePolicy) {
163
+ /**
164
+ * The new plan takes effect immediately, and the user is charged full price of new plan
165
+ * and is given a full billing cycle of subscription, plus remaining prorated time
166
+ * from the old plan.
167
+ */
168
+ PurchaseUpdatePolicy["CHARGE_FULL_PRICE"] = "ChargeFullPrice";
169
+ /**
170
+ * The new plan takes effect immediately, and the billing cycle remains the same.
171
+ */
172
+ PurchaseUpdatePolicy["CHARGE_PRORATED_PRICE"] = "ChargeProratedPrice";
173
+ /**
174
+ * The new plan takes effect immediately, and the remaining time will be prorated
175
+ * and credited to the user.
176
+ */
177
+ PurchaseUpdatePolicy["WITH_TIME_PRORATION"] = "WithTimeProration";
178
+ /**
179
+ * The new purchase takes effect immediately, the new plan will take effect
180
+ * when the old item expires.
181
+ */
182
+ PurchaseUpdatePolicy["DEFERRED"] = "Deferred";
183
+ /**
184
+ * The new plan takes effect immediately, and the new price will be charged
185
+ * on next recurrence time.
186
+ */
187
+ PurchaseUpdatePolicy["WITHOUT_PRORATION"] = "WithoutProration";
188
+ /**
189
+ * Unknown police.
190
+ */
191
+ PurchaseUpdatePolicy["UNKNOWN"] = "Unknown";
192
+ return PurchaseUpdatePolicy;
193
+ }({});
194
+ export let EntitlementsCacheLifetime = /*#__PURE__*/function (EntitlementsCacheLifetime) {
195
+ EntitlementsCacheLifetime["WEEK"] = "Week";
196
+ EntitlementsCacheLifetime["TWO_WEEKS"] = "TwoWeeks";
197
+ EntitlementsCacheLifetime["MONTH"] = "Month";
198
+ EntitlementsCacheLifetime["TWO_MONTHS"] = "TwoMonths";
199
+ EntitlementsCacheLifetime["THREE_MONTHS"] = "ThreeMonths";
200
+ EntitlementsCacheLifetime["SIX_MONTHS"] = "SixMonths";
201
+ EntitlementsCacheLifetime["YEAR"] = "Year";
202
+ EntitlementsCacheLifetime["UNLIMITED"] = "Unlimited";
203
+ return EntitlementsCacheLifetime;
204
+ }({});
205
+ export const SKPeriodUnit = {
206
+ 0: "DAY",
207
+ 1: "WEEK",
208
+ 2: "MONTH",
209
+ 3: "YEAR"
210
+ };
211
+ export const SKProductDiscountType = {
212
+ 0: "INTRODUCTORY",
213
+ 1: "SUBSCRIPTION"
214
+ };
215
+ export const SKProductDiscountPaymentMode = {
216
+ 0: "PAY_AS_YOU_GO",
217
+ 1: "PAY_UP_FRONT",
218
+ 2: "FREE_TRIAL"
219
+ };
220
+ export const OfferingTag = {
221
+ "-1": "UNKNOWN",
222
+ "0": "NONE",
223
+ "1": "MAIN"
224
+ };
225
+ export let IntroEligibilityStatus = /*#__PURE__*/function (IntroEligibilityStatus) {
226
+ IntroEligibilityStatus["UNKNOWN"] = "unknown";
227
+ IntroEligibilityStatus["NON_INTRO_OR_TRIAL_PRODUCT"] = "non_intro_or_trial_product";
228
+ IntroEligibilityStatus["ELIGIBLE"] = "intro_or_trial_eligible";
229
+ IntroEligibilityStatus["INELIGIBLE"] = "intro_or_trial_ineligible";
230
+ return IntroEligibilityStatus;
231
+ }({});
232
+ export let ExperimentGroupType = /*#__PURE__*/function (ExperimentGroupType) {
233
+ ExperimentGroupType["UNKNOWN"] = "unknown";
234
+ ExperimentGroupType["CONTROL"] = "control";
235
+ ExperimentGroupType["TREATMENT"] = "treatment";
236
+ return ExperimentGroupType;
237
+ }({});
238
+ export let RemoteConfigurationSourceType = /*#__PURE__*/function (RemoteConfigurationSourceType) {
239
+ RemoteConfigurationSourceType["UNKNOWN"] = "unknown";
240
+ RemoteConfigurationSourceType["EXPERIMENT_CONTROL_GROUP"] = "experiment_control_group";
241
+ RemoteConfigurationSourceType["EXPERIMENT_TREATMENT_GROUP"] = "experiment_treatment_group";
242
+ RemoteConfigurationSourceType["REMOTE_CONFIGURATION"] = "remote_configuration";
243
+ return RemoteConfigurationSourceType;
244
+ }({});
245
+ export let ActionType = /*#__PURE__*/function (ActionType) {
246
+ /**
247
+ * Unspecified action type
248
+ */
249
+ ActionType["UNKNOWN"] = "unknown";
250
+ /**
251
+ * URL action that opens the URL using SafariViewController
252
+ */
253
+ ActionType["URL"] = "url";
254
+ /**
255
+ * Deeplink action that opens if Application can open specified deeplink
256
+ */
257
+ ActionType["DEEPLINK"] = "deeplink";
258
+ /**
259
+ * Navigation to another No-Codes screen
260
+ */
261
+ ActionType["NAVIGATION"] = "navigation";
262
+ /**
263
+ * Purchase the product
264
+ */
265
+ ActionType["PURCHASE"] = "purchase";
266
+ /**
267
+ * Restore all purchases
268
+ */
269
+ ActionType["RESTORE"] = "restore";
270
+ /**
271
+ * Close current screen
272
+ */
273
+ ActionType["CLOSE"] = "close";
274
+ /**
275
+ * Close all No-Code screens
276
+ */
277
+ ActionType["CLOSE_ALL"] = "closeAll";
278
+ return ActionType;
279
+ }({});
280
+ export let RemoteConfigurationAssignmentType = /*#__PURE__*/function (RemoteConfigurationAssignmentType) {
281
+ RemoteConfigurationAssignmentType["UNKNOWN"] = "unknown";
282
+ RemoteConfigurationAssignmentType["AUTO"] = "auto";
283
+ RemoteConfigurationAssignmentType["MANUAL"] = "manual";
284
+ return RemoteConfigurationAssignmentType;
285
+ }({});
286
+ export let ScreenPresentationStyle = /*#__PURE__*/function (ScreenPresentationStyle) {
287
+ /**
288
+ * on Android - default screen transaction animation will be used.
289
+ * on iOS - not a modal presentation. This style pushes a controller to a current navigation stack.
290
+ * For iOS NavigationController on the top of the stack is required.
291
+ */
292
+ ScreenPresentationStyle["PUSH"] = "Push";
293
+ /**
294
+ * on Android - screen will move from bottom to top.
295
+ * on iOS - UIModalPresentationFullScreen analog.
296
+ */
297
+ ScreenPresentationStyle["FULL_SCREEN"] = "FullScreen";
298
+ /**
299
+ * iOS only - UIModalPresentationPopover analog
300
+ */
301
+ ScreenPresentationStyle["POPOVER"] = "Popover";
302
+ /**
303
+ * Android only - screen will appear/disappear without any animation.
304
+ * For iOS consider providing the {@link ScreenPresentationConfig.animated} flag.
305
+ */
306
+ ScreenPresentationStyle["NO_ANIMATION"] = "NoAnimation";
307
+ return ScreenPresentationStyle;
308
+ }({});
309
+ export let QonversionErrorCode = /*#__PURE__*/function (QonversionErrorCode) {
310
+ QonversionErrorCode["UNKNOWN"] = "Unknown";
311
+ // Unknown error
312
+ QonversionErrorCode["API_RATE_LIMIT_EXCEEDED"] = "ApiRateLimitExceeded";
313
+ // API requests rate limit exceeded
314
+ QonversionErrorCode["APPLE_STORE_ERROR"] = "AppleStoreError";
315
+ // Apple Store error received
316
+ QonversionErrorCode["BACKEND_ERROR"] = "BackendError";
317
+ // There was a backend error
318
+ QonversionErrorCode["BILLING_UNAVAILABLE"] = "BillingUnavailable";
319
+ // The Billing service is unavailable on the device
320
+ QonversionErrorCode["CLIENT_INVALID"] = "ClientInvalid";
321
+ // Client is not allowed to issue the request, etc
322
+ QonversionErrorCode["CLOUD_SERVICE_NETWORK_CONNECTION_FAILED"] = "CloudServiceNetworkConnectionFailed";
323
+ // The device could not connect to the network
324
+ QonversionErrorCode["CLOUD_SERVICE_PERMISSION_DENIED"] = "CloudServicePermissionDenied";
325
+ // User is not allowed to access cloud service information
326
+ QonversionErrorCode["CLOUD_SERVICE_REVOKED"] = "CloudServiceRevoked";
327
+ // User has revoked permission to use this cloud service
328
+ QonversionErrorCode["FAILED_TO_RECEIVE_DATA"] = "FailedToReceiveData";
329
+ // Could not receive data
330
+ QonversionErrorCode["FEATURE_NOT_SUPPORTED"] = "FeatureNotSupported";
331
+ // The requested feature is not supported
332
+ QonversionErrorCode["FRAUD_PURCHASE"] = "FraudPurchase";
333
+ // Fraud purchase was detected
334
+ QonversionErrorCode["INCORRECT_REQUEST"] = "IncorrectRequest";
335
+ // Request failed
336
+ QonversionErrorCode["INTERNAL_ERROR"] = "InternalError";
337
+ // Internal backend error
338
+ QonversionErrorCode["INVALID_CLIENT_UID"] = "InvalidClientUid";
339
+ // Client Uid is invalid or not set
340
+ QonversionErrorCode["INVALID_CREDENTIALS"] = "InvalidCredentials";
341
+ // Access token is invalid or not set
342
+ QonversionErrorCode["INVALID_STORE_CREDENTIALS"] = "InvalidStoreCredentials";
343
+ // This account does not have access to the requested application
344
+ QonversionErrorCode["LAUNCH_ERROR"] = "LaunchError";
345
+ // There was an error while launching Qonversion SDK
346
+ QonversionErrorCode["NETWORK_CONNECTION_FAILED"] = "NetworkConnectionFailed";
347
+ // There was a network issue. Make sure that the Internet connection is available on the device
348
+ QonversionErrorCode["OFFERINGS_NOT_FOUND"] = "OfferingsNotFound";
349
+ // No offerings found
350
+ QonversionErrorCode["PAYMENT_INVALID"] = "PaymentInvalid";
351
+ // Purchase identifier was invalid, etc.
352
+ QonversionErrorCode["PAYMENT_NOT_ALLOWED"] = "PaymentNotAllowed";
353
+ // This device is not allowed to make the payment
354
+ QonversionErrorCode["PLAY_STORE_ERROR"] = "PlayStoreError";
355
+ // There was an issue with the Play Store service
356
+ QonversionErrorCode["PRIVACY_ACKNOWLEDGEMENT_REQUIRED"] = "PrivacyAcknowledgementRequired";
357
+ // User needs to acknowledge Apple's privacy policy
358
+ QonversionErrorCode["PRODUCT_ALREADY_OWNED"] = "ProductAlreadyOwned";
359
+ // Failed to purchase since item is already owned
360
+ QonversionErrorCode["PRODUCT_NOT_FOUND"] = "ProductNotFound";
361
+ // Failed to purchase since the Qonversion product was not found
362
+ QonversionErrorCode["PRODUCT_NOT_OWNED"] = "ProductNotOwned";
363
+ // Failed to consume purchase since item is not owned
364
+ QonversionErrorCode["PROJECT_CONFIG_ERROR"] = "ProjectConfigError";
365
+ // The project is not configured or configured incorrectly in the Qonversion Dashboard
366
+ QonversionErrorCode["PURCHASE_CANCELED"] = "PurchaseCanceled";
367
+ // User pressed back or canceled a dialog for purchase
368
+ QonversionErrorCode["PURCHASE_INVALID"] = "PurchaseInvalid";
369
+ // Failure of purchase
370
+ QonversionErrorCode["PURCHASE_PENDING"] = "PurchasePending";
371
+ // Purchase is pending
372
+ QonversionErrorCode["PURCHASE_UNSPECIFIED"] = "PurchaseUnspecified";
373
+ // Unspecified state of the purchase
374
+ QonversionErrorCode["RECEIPT_VALIDATION_ERROR"] = "ReceiptValidationError";
375
+ // Receipt validation error
376
+ QonversionErrorCode["REMOTE_CONFIGURATION_NOT_AVAILABLE"] = "RemoteConfigurationNotAvailable";
377
+ // Remote configuration is not available for the current user or for the provided context key
378
+ QonversionErrorCode["RESPONSE_PARSING_FAILED"] = "ResponseParsingFailed";
379
+ // A problem occurred while serializing or deserializing data
380
+ QonversionErrorCode["STORE_PRODUCT_NOT_AVAILABLE"] = "StoreProductNotAvailable";
381
+ // Requested product is not available for purchase or its product id was not found
382
+ QonversionErrorCode["UNAUTHORIZED_REQUEST_DATA"] = "UnauthorizedRequestData";
383
+ // App is attempting to use SKPayment's requestData property, but does not have the appropriate entitlement
384
+ QonversionErrorCode["UNKNOWN_CLIENT_PLATFORM"] = "UnknownClientPlatform"; // The current platform is not supported
385
+ return QonversionErrorCode;
386
+ }({});
387
+ export let NoCodesErrorCode = /*#__PURE__*/function (NoCodesErrorCode) {
388
+ NoCodesErrorCode["UNKNOWN"] = "Unknown";
389
+ NoCodesErrorCode["BAD_NETWORK_REQUEST"] = "BadNetworkRequest";
390
+ NoCodesErrorCode["BAD_RESPONSE"] = "BadResponse";
391
+ NoCodesErrorCode["ACTIVITY_START"] = "ActivityStart";
392
+ // Android
393
+ NoCodesErrorCode["NETWORK_REQUEST_EXECUTION"] = "NetworkRequestExecution";
394
+ // Android
395
+ NoCodesErrorCode["SERIALIZATION"] = "Serialization";
396
+ // Android
397
+ NoCodesErrorCode["DESERIALIZATION"] = "Deserialization";
398
+ // Android
399
+ NoCodesErrorCode["REQUEST_DENIED"] = "RequestDenied";
400
+ // Android
401
+ NoCodesErrorCode["MAPPING"] = "Mapping";
402
+ // Android
403
+ NoCodesErrorCode["BACKEND_ERROR"] = "BackendError";
404
+ // Android
405
+ NoCodesErrorCode["SCREEN_NOT_FOUND"] = "ScreenNotFound";
406
+ // Android
407
+ NoCodesErrorCode["QONVERSION_ERROR"] = "QonversionError";
408
+ NoCodesErrorCode["INTERNAL"] = "Internal";
409
+ // iOS
410
+ NoCodesErrorCode["AUTHORIZATION_FAILED"] = "AuthorizationFailed";
411
+ // iOS
412
+ NoCodesErrorCode["CRITICAL"] = "Critical";
413
+ // iOS
414
+ NoCodesErrorCode["PRODUCT_NOT_FOUND"] = "ProductNotFound";
415
+ // iOS
416
+ NoCodesErrorCode["PRODUCTS_LOADING_FAILED"] = "ProductsLoadingFailed";
417
+ // iOS
418
+ NoCodesErrorCode["RATE_LIMIT_EXCEEDED"] = "RateLimitExceeded";
419
+ // iOS
420
+ NoCodesErrorCode["SCREEN_LOADING_FAILED"] = "ScreenLoadingFailed";
421
+ // iOS
422
+ NoCodesErrorCode["SDK_INITIALIZATION_ERROR"] = "SDKInitializationError"; // iOS
423
+ return NoCodesErrorCode;
424
+ }({});
425
+ //# sourceMappingURL=enums.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["LaunchMode","Environment","ProductType","SubscriptionPeriodUnit","PricingPhaseRecurrenceMode","PricingPhaseType","EntitlementRenewState","EntitlementSource","TransactionEnvironment","TransactionOwnershipType","EntitlementGrantType","TransactionType","UserPropertyKey","AttributionProvider","PurchaseUpdatePolicy","EntitlementsCacheLifetime","SKPeriodUnit","SKProductDiscountType","SKProductDiscountPaymentMode","OfferingTag","IntroEligibilityStatus","ExperimentGroupType","RemoteConfigurationSourceType","ActionType","RemoteConfigurationAssignmentType","ScreenPresentationStyle","QonversionErrorCode","NoCodesErrorCode"],"sourceRoot":"../../../src","sources":["dto/enums.ts"],"mappings":";;AAAA,WAAYA,UAAU,0BAAVA,UAAU;EAAVA,UAAU;EAAVA,UAAU;EAAA,OAAVA,UAAU;AAAA;AAKtB,WAAYC,WAAW,0BAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAA,OAAXA,WAAW;AAAA;AAKvB,WAAYC,WAAW,0BAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAEJ;EAFPA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAA,OAAXA,WAAW;AAAA;AAQvB,WAAYC,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;;AAQlC;AACA;AACA;AACA,WAAYC,0BAA0B,0BAA1BA,0BAA0B;EACpC;AACF;AACA;EAHYA,0BAA0B;EAMpC;AACF;AACA;AACA;EATYA,0BAA0B;EAYpC;AACF;AACA;EAdYA,0BAA0B;EAiBpC;AACF;AACA;EAnBYA,0BAA0B;EAAA,OAA1BA,0BAA0B;AAAA;;AAuBtC;AACA;AACA;AACA,WAAYC,gBAAgB,0BAAhBA,gBAAgB;EAC1B;AACF;AACA;EAHYA,gBAAgB;EAM1B;AACF;AACA;EARYA,gBAAgB;EAW1B;AACF;AACA;EAbYA,gBAAgB;EAgB1B;AACF;AACA;EAlBYA,gBAAgB;EAqB1B;AACF;AACA;EAvBYA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA;AA2B5B,WAAYC,qBAAqB,0BAArBA,qBAAqB;EAArBA,qBAAqB;EAArBA,qBAAqB;EAArBA,qBAAqB;EAArBA,qBAAqB;EAArBA,qBAAqB;EAAA,OAArBA,qBAAqB;AAAA;AAQjC,WAAYC,iBAAiB,0BAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAA,OAAjBA,iBAAiB;AAAA;AAQ7B,WAAYC,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;AAKlC,WAAYC,wBAAwB,0BAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA;AAKpC,WAAYC,oBAAoB,0BAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAAA,OAApBA,oBAAoB;AAAA;AAOhC,WAAYC,eAAe,0BAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAA,OAAfA,eAAe;AAAA;AAU3B,WAAYC,eAAe,0BAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAOqB;EAPpCA,eAAe;EAAfA,eAAe;EASA;EATfA,eAAe;EAUS;EAVxBA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAA,OAAfA,eAAe;AAAA;AAmB3B,WAAYC,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAIQ;EAJ3BA,mBAAmB,2CAKU;EAAA,OAL7BA,mBAAmB;AAAA;;AAQ/B;AACA;AACA;AACA;AACA;AACA;AACA,WAAYC,oBAAoB,0BAApBA,oBAAoB;EAC9B;AACF;AACA;AACA;AACA;EALYA,oBAAoB;EAQ9B;AACF;AACA;EAVYA,oBAAoB;EAa9B;AACF;AACA;AACA;EAhBYA,oBAAoB;EAmB9B;AACF;AACA;AACA;EAtBYA,oBAAoB;EAyB9B;AACF;AACA;AACA;EA5BYA,oBAAoB;EA+B9B;AACF;AACA;EAjCYA,oBAAoB;EAAA,OAApBA,oBAAoB;AAAA;AAqChC,WAAYC,yBAAyB,0BAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAzBA,yBAAyB;EAAA,OAAzBA,yBAAyB;AAAA;AAWrC,OAAO,MAAMC,YAAY,GAAG;EAC1B,CAAC,EAAE,KAAK;EACR,CAAC,EAAE,MAAM;EACT,CAAC,EAAE,OAAO;EACV,CAAC,EAAE;AACL,CAAU;AAGV,OAAO,MAAMC,qBAAqB,GAAG;EACnC,CAAC,EAAE,cAAc;EACjB,CAAC,EAAE;AACL,CAAU;AAIV,OAAO,MAAMC,4BAA4B,GAAG;EAC1C,CAAC,EAAE,eAAe;EAClB,CAAC,EAAE,cAAc;EACjB,CAAC,EAAE;AACL,CAAU;AAGV,OAAO,MAAMC,WAAW,GAAG;EACzB,IAAI,EAAE,SAAS;EACf,GAAG,EAAE,MAAM;EACX,GAAG,EAAE;AACP,CAAU;AAGV,WAAYC,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;AAOlC,WAAYC,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA;AAM/B,WAAYC,6BAA6B,0BAA7BA,6BAA6B;EAA7BA,6BAA6B;EAA7BA,6BAA6B;EAA7BA,6BAA6B;EAA7BA,6BAA6B;EAAA,OAA7BA,6BAA6B;AAAA;AAOzC,WAAYC,UAAU,0BAAVA,UAAU;EACpB;AACF;AACA;EAHYA,UAAU;EAMpB;AACF;AACA;EARYA,UAAU;EAWpB;AACF;AACA;EAbYA,UAAU;EAgBpB;AACF;AACA;EAlBYA,UAAU;EAqBpB;AACF;AACA;EAvBYA,UAAU;EA0BpB;AACF;AACA;EA5BYA,UAAU;EA+BpB;AACF;AACA;EAjCYA,UAAU;EAoCpB;AACF;AACA;EAtCYA,UAAU;EAAA,OAAVA,UAAU;AAAA;AA0CtB,WAAYC,iCAAiC,0BAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAA,OAAjCA,iCAAiC;AAAA;AAM7C,WAAYC,uBAAuB,0BAAvBA,uBAAuB;EACjC;AACF;AACA;AACA;AACA;EALYA,uBAAuB;EAOjC;AACF;AACA;AACA;EAVYA,uBAAuB;EAYjC;AACF;AACA;EAdYA,uBAAuB;EAgBjC;AACF;AACA;AACA;EAnBYA,uBAAuB;EAAA,OAAvBA,uBAAuB;AAAA;AAuBnC,WAAYC,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB;EACR;EADXA,mBAAmB;EAEqB;EAFxCA,mBAAmB;EAGU;EAH7BA,mBAAmB;EAIG;EAJtBA,mBAAmB;EAKe;EALlCA,mBAAmB;EAMK;EANxBA,mBAAmB;EAOoD;EAPvEA,mBAAmB;EAQqC;EARxDA,mBAAmB;EASkB;EATrCA,mBAAmB;EAUmB;EAVtCA,mBAAmB;EAWkB;EAXrCA,mBAAmB;EAYK;EAZxBA,mBAAmB;EAaW;EAb9BA,mBAAmB;EAcK;EAdxBA,mBAAmB;EAeY;EAf/BA,mBAAmB;EAgBe;EAhBlCA,mBAAmB;EAiB0B;EAjB7CA,mBAAmB;EAkBC;EAlBpBA,mBAAmB;EAmB0B;EAnB7CA,mBAAmB;EAoBc;EApBjCA,mBAAmB;EAqBO;EArB1BA,mBAAmB;EAsBc;EAtBjCA,mBAAmB;EAuBQ;EAvB3BA,mBAAmB;EAwBwC;EAxB3DA,mBAAmB;EAyBkB;EAzBrCA,mBAAmB;EA0BU;EA1B7BA,mBAAmB;EA2BU;EA3B7BA,mBAAmB;EA4BgB;EA5BnCA,mBAAmB;EA6BW;EA7B9BA,mBAAmB;EA8BS;EA9B5BA,mBAAmB;EA+BS;EA/B5BA,mBAAmB;EAgCiB;EAhCpCA,mBAAmB;EAiCwB;EAjC3CA,mBAAmB;EAkC2C;EAlC9DA,mBAAmB;EAmCsB;EAnCzCA,mBAAmB;EAoC6B;EApChDA,mBAAmB;EAqC0B;EArC7CA,mBAAmB,uDAsCsB;EAAA,OAtCzCA,mBAAmB;AAAA;AAyC/B,WAAYC,gBAAgB,0BAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAIQ;EAJxBA,gBAAgB;EAK6B;EAL7CA,gBAAgB;EAMO;EANvBA,gBAAgB;EAOW;EAP3BA,gBAAgB;EAQQ;EARxBA,gBAAgB;EASL;EATXA,gBAAgB;EAUM;EAVtBA,gBAAgB;EAWW;EAX3BA,gBAAgB;EAAhBA,gBAAgB;EAaH;EAbbA,gBAAgB;EAcoB;EAdpCA,gBAAgB;EAeH;EAfbA,gBAAgB;EAgBa;EAhB7BA,gBAAgB;EAiByB;EAjBzCA,gBAAgB;EAkBiB;EAlBjCA,gBAAgB;EAmBqB;EAnBrCA,gBAAgB,yDAoB0B;EAAA,OApB1CA,gBAAgB;AAAA","ignoreList":[]}
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * This class contains all the information about the Google in-app product details.
5
+ */
6
+ class ProductInAppDetails {
7
+ /**
8
+ * The price of the in-app product.
9
+ */
10
+
11
+ constructor(price) {
12
+ this.price = price;
13
+ }
14
+ }
15
+ export default ProductInAppDetails;
16
+ //# sourceMappingURL=ProductInAppDetails.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ProductInAppDetails","constructor","price"],"sourceRoot":"../../../../src","sources":["dto/storeProducts/ProductInAppDetails.ts"],"mappings":";;AAEA;AACA;AACA;AACA,MAAMA,mBAAmB,CAAC;EACxB;AACF;AACA;;EAGEC,WAAWA,CAACC,KAAmB,EAAE;IAC/B,IAAI,CAACA,KAAK,GAAGA,KAAK;EACpB;AACF;AAEA,eAAeF,mBAAmB","ignoreList":[]}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * This class represents the details about the installment plan for a subscription product.
5
+ */
6
+ class ProductInstallmentPlanDetails {
7
+ /**
8
+ * Committed payments count after a user signs up for this subscription plan.
9
+ */
10
+
11
+ /**
12
+ * Subsequent committed payments count after this subscription plan renews.
13
+ *
14
+ * Returns 0 if the installment plan doesn't have any subsequent commitment,
15
+ * which means this subscription plan will fall back to a normal
16
+ * non-installment monthly plan when the plan renews.
17
+ */
18
+
19
+ constructor(commitmentPaymentsCount, subsequentCommitmentPaymentsCount) {
20
+ this.commitmentPaymentsCount = commitmentPaymentsCount;
21
+ this.subsequentCommitmentPaymentsCount = subsequentCommitmentPaymentsCount;
22
+ }
23
+ }
24
+ export default ProductInstallmentPlanDetails;
25
+ //# sourceMappingURL=ProductInstallmentPlanDetails.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ProductInstallmentPlanDetails","constructor","commitmentPaymentsCount","subsequentCommitmentPaymentsCount"],"sourceRoot":"../../../../src","sources":["dto/storeProducts/ProductInstallmentPlanDetails.ts"],"mappings":";;AAAA;AACA;AACA;AACA,MAAMA,6BAA6B,CAAC;EAClC;AACF;AACA;;EAGE;AACF;AACA;AACA;AACA;AACA;AACA;;EAGEC,WAAWA,CACTC,uBAA+B,EAC/BC,iCAAyC,EACzC;IACA,IAAI,CAACD,uBAAuB,GAAGA,uBAAuB;IACtD,IAAI,CAACC,iCAAiC,GAAGA,iCAAiC;EAC5E;AACF;AAEA,eAAeH,6BAA6B","ignoreList":[]}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * This class contains all the information about the Google subscription offer details.
5
+ * It might be either a plain base plan details or a base plan with the concrete offer details.
6
+ */
7
+ class ProductOfferDetails {
8
+ /**
9
+ * The identifier of the current base plan.
10
+ */
11
+
12
+ /**
13
+ * The identifier of the concrete offer, to which these details belong.
14
+ * Null, if these are plain base plan details.
15
+ */
16
+
17
+ /**
18
+ * A token to purchase the current offer.
19
+ */
20
+
21
+ /**
22
+ * List of tags set for the current offer.
23
+ */
24
+
25
+ /**
26
+ * A time-ordered list of pricing phases for the current offer.
27
+ */
28
+
29
+ /**
30
+ * A base plan phase details.
31
+ */
32
+
33
+ /**
34
+ * Additional details of an installment plan, if exists.
35
+ */
36
+
37
+ /**
38
+ * A trial phase details, if exists.
39
+ */
40
+
41
+ /**
42
+ * An intro phase details, if exists.
43
+ * The intro phase is one of single or recurrent discounted payments.
44
+ */
45
+
46
+ /**
47
+ * True, if there is a trial phase in the current offer. False otherwise.
48
+ */
49
+
50
+ /**
51
+ * True, if there is any intro phase in the current offer. False otherwise.
52
+ * The intro phase is one of single or recurrent discounted payments.
53
+ */
54
+
55
+ /**
56
+ * True, if there is any trial or intro phase in the current offer. False otherwise.
57
+ * The intro phase is one of single or recurrent discounted payments.
58
+ */
59
+
60
+ constructor(basePlanId, offerId, offerToken, tags, pricingPhases, basePlan, installmentPlanDetails, introPhase, trialPhase, hasTrial, hasIntro, hasTrialOrIntro) {
61
+ this.basePlanId = basePlanId;
62
+ this.offerId = offerId;
63
+ this.offerToken = offerToken;
64
+ this.tags = tags;
65
+ this.pricingPhases = pricingPhases;
66
+ this.basePlan = basePlan;
67
+ this.installmentPlanDetails = installmentPlanDetails;
68
+ this.introPhase = introPhase;
69
+ this.trialPhase = trialPhase;
70
+ this.hasTrial = hasTrial;
71
+ this.hasIntro = hasIntro;
72
+ this.hasTrialOrIntro = hasTrialOrIntro;
73
+ }
74
+ }
75
+ export default ProductOfferDetails;
76
+ //# sourceMappingURL=ProductOfferDetails.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ProductOfferDetails","constructor","basePlanId","offerId","offerToken","tags","pricingPhases","basePlan","installmentPlanDetails","introPhase","trialPhase","hasTrial","hasIntro","hasTrialOrIntro"],"sourceRoot":"../../../../src","sources":["dto/storeProducts/ProductOfferDetails.ts"],"mappings":";;AAGA;AACA;AACA;AACA;AACA,MAAMA,mBAAmB,CAAC;EACxB;AACF;AACA;;EAGE;AACF;AACA;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;AACA;;EAGE;AACF;AACA;AACA;;EAGEC,WAAWA,CACTC,UAAkB,EAClBC,OAAsB,EACtBC,UAAkB,EAClBC,IAAc,EACdC,aAAoC,EACpCC,QAAoC,EACpCC,sBAA4D,EAC5DC,UAAsC,EACtCC,UAAsC,EACtCC,QAAiB,EACjBC,QAAiB,EACjBC,eAAwB,EACxB;IACA,IAAI,CAACX,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,OAAO,GAAGA,OAAO;IACtB,IAAI,CAACC,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,IAAI,GAAGA,IAAI;IAChB,IAAI,CAACC,aAAa,GAAGA,aAAa;IAClC,IAAI,CAACC,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACC,sBAAsB,GAAGA,sBAAsB;IACpD,IAAI,CAACC,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,UAAU,GAAGA,UAAU;IAC5B,IAAI,CAACC,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACC,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACC,eAAe,GAAGA,eAAe;EACxC;AACF;AAEA,eAAeb,mBAAmB","ignoreList":[]}
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Information about the Google product's price.
5
+ */
6
+ class ProductPrice {
7
+ /**
8
+ * Total amount of money in micro-units,
9
+ * where 1,000,000 micro-units equal one unit of the currency.
10
+ */
11
+
12
+ /**
13
+ * ISO 4217 currency code for price.
14
+ */
15
+
16
+ /**
17
+ * Formatted price for the payment, including its currency sign.
18
+ */
19
+
20
+ /**
21
+ * True, if the price is zero. False otherwise.
22
+ */
23
+
24
+ /**
25
+ * Price currency symbol. Null if failed to parse.
26
+ */
27
+
28
+ constructor(priceAmountMicros, priceCurrencyCode, formattedPrice, isFree, currencySymbol = null) {
29
+ this.priceAmountMicros = priceAmountMicros;
30
+ this.priceCurrencyCode = priceCurrencyCode;
31
+ this.formattedPrice = formattedPrice;
32
+ this.isFree = isFree;
33
+ this.currencySymbol = currencySymbol;
34
+ }
35
+ }
36
+ export default ProductPrice;
37
+ //# sourceMappingURL=ProductPrice.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ProductPrice","constructor","priceAmountMicros","priceCurrencyCode","formattedPrice","isFree","currencySymbol"],"sourceRoot":"../../../../src","sources":["dto/storeProducts/ProductPrice.ts"],"mappings":";;AAAA;AACA;AACA;AACA,MAAMA,YAAY,CAAC;EACjB;AACF;AACA;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGE;AACF;AACA;;EAGEC,WAAWA,CACTC,iBAAyB,EACzBC,iBAAyB,EACzBC,cAAsB,EACtBC,MAAe,EACfC,cAA6B,GAAG,IAAI,EACpC;IACA,IAAI,CAACJ,iBAAiB,GAAGA,iBAAiB;IAC1C,IAAI,CAACC,iBAAiB,GAAGA,iBAAiB;IAC1C,IAAI,CAACC,cAAc,GAAGA,cAAc;IACpC,IAAI,CAACC,MAAM,GAAGA,MAAM;IACpB,IAAI,CAACC,cAAc,GAAGA,cAAc;EACtC;AACF;AAEA,eAAeN,YAAY","ignoreList":[]}