@splitsoftware/splitio-commons 1.2.1-rc.0 → 1.2.1-rc.11

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 (316) hide show
  1. package/cjs/evaluator/Engine.js +6 -6
  2. package/cjs/evaluator/combiners/and.js +1 -1
  3. package/cjs/evaluator/combiners/ifelseif.js +2 -2
  4. package/cjs/evaluator/condition/engineUtils.js +2 -2
  5. package/cjs/evaluator/condition/index.js +4 -4
  6. package/cjs/evaluator/index.js +5 -5
  7. package/cjs/evaluator/matchers/cont_all.js +1 -1
  8. package/cjs/evaluator/matchers/cont_any.js +1 -1
  9. package/cjs/evaluator/matchers/cont_str.js +1 -1
  10. package/cjs/evaluator/matchers/dependency.js +1 -1
  11. package/cjs/evaluator/matchers/eq_set.js +1 -1
  12. package/cjs/evaluator/matchers/ew.js +3 -3
  13. package/cjs/evaluator/matchers/part_of.js +1 -1
  14. package/cjs/evaluator/matchers/segment.js +1 -1
  15. package/cjs/evaluator/matchers/sw.js +1 -1
  16. package/cjs/evaluator/matchers/whitelist.js +1 -1
  17. package/cjs/evaluator/matchersTransform/index.js +12 -12
  18. package/cjs/evaluator/parser/index.js +6 -6
  19. package/cjs/evaluator/treatments/index.js +1 -1
  20. package/cjs/evaluator/value/index.js +1 -1
  21. package/cjs/evaluator/value/sanitize.js +4 -4
  22. package/cjs/integrations/browser.js +3 -3
  23. package/cjs/integrations/ga/GaToSplit.js +14 -14
  24. package/cjs/integrations/ga/GoogleAnalyticsToSplit.js +5 -3
  25. package/cjs/integrations/ga/SplitToGa.js +1 -1
  26. package/cjs/integrations/ga/SplitToGoogleAnalytics.js +4 -2
  27. package/cjs/listeners/browser.js +15 -11
  28. package/cjs/listeners/node.js +1 -1
  29. package/cjs/logger/constants.js +9 -3
  30. package/cjs/logger/index.js +2 -2
  31. package/cjs/logger/messages/debug.js +4 -4
  32. package/cjs/logger/messages/error.js +5 -4
  33. package/cjs/logger/messages/info.js +8 -5
  34. package/cjs/logger/messages/warn.js +1 -1
  35. package/cjs/logger/sdkLogger.js +1 -1
  36. package/cjs/readiness/readinessManager.js +2 -2
  37. package/cjs/readiness/sdkReadinessManager.js +4 -4
  38. package/cjs/sdkClient/client.js +12 -11
  39. package/cjs/sdkClient/clientAttributesDecoration.js +4 -4
  40. package/cjs/sdkClient/clientCS.js +3 -3
  41. package/cjs/sdkClient/clientInputValidation.js +20 -22
  42. package/cjs/sdkClient/sdkClient.js +3 -6
  43. package/cjs/sdkClient/sdkClientMethod.js +1 -1
  44. package/cjs/sdkClient/sdkClientMethodCS.js +6 -10
  45. package/cjs/sdkClient/sdkClientMethodCSWithTT.js +7 -15
  46. package/cjs/sdkFactory/index.js +14 -12
  47. package/cjs/sdkFactory/userConsentProps.js +40 -0
  48. package/cjs/sdkManager/index.js +11 -11
  49. package/cjs/services/splitApi.js +3 -2
  50. package/cjs/services/splitHttpClient.js +2 -2
  51. package/cjs/storages/KeyBuilder.js +2 -6
  52. package/cjs/storages/KeyBuilderCS.js +13 -3
  53. package/cjs/storages/KeyBuilderSS.js +1 -1
  54. package/cjs/storages/findLatencyIndex.js +1 -1
  55. package/cjs/storages/inLocalStorage/MySegmentsCacheInLocal.js +24 -4
  56. package/cjs/storages/inLocalStorage/SplitsCacheInLocal.js +12 -12
  57. package/cjs/storages/inLocalStorage/index.js +4 -4
  58. package/cjs/storages/inMemory/AttributesCacheInMemory.js +1 -1
  59. package/cjs/storages/inMemory/ImpressionCountsCacheInMemory.js +1 -1
  60. package/cjs/storages/inMemory/ImpressionsCacheInMemory.js +15 -1
  61. package/cjs/storages/inMemory/InMemoryStorage.js +1 -1
  62. package/cjs/storages/inMemory/InMemoryStorageCS.js +1 -1
  63. package/cjs/storages/inMemory/LatenciesCacheInMemory.js +1 -1
  64. package/cjs/storages/inMemory/MySegmentsCacheInMemory.js +1 -1
  65. package/cjs/storages/inMemory/SegmentsCacheInMemory.js +2 -2
  66. package/cjs/storages/inMemory/SplitsCacheInMemory.js +5 -5
  67. package/cjs/storages/inRedis/LatenciesCacheInRedis.js +1 -1
  68. package/cjs/storages/inRedis/RedisAdapter.js +24 -11
  69. package/cjs/storages/inRedis/SegmentsCacheInRedis.js +1 -1
  70. package/cjs/storages/inRedis/SplitsCacheInRedis.js +3 -3
  71. package/cjs/storages/inRedis/index.js +1 -1
  72. package/cjs/storages/pluggable/SegmentsCachePluggable.js +1 -1
  73. package/cjs/storages/pluggable/SplitsCachePluggable.js +3 -3
  74. package/cjs/storages/pluggable/inMemoryWrapper.js +4 -4
  75. package/cjs/storages/pluggable/index.js +6 -6
  76. package/cjs/sync/offline/LocalhostFromFile.js +1 -1
  77. package/cjs/sync/offline/LocalhostFromObject.js +1 -1
  78. package/cjs/sync/offline/splitsParser/parseCondition.js +1 -1
  79. package/cjs/sync/offline/splitsParser/splitsParserFromFile.js +13 -13
  80. package/cjs/sync/offline/splitsParser/splitsParserFromSettings.js +3 -3
  81. package/cjs/sync/offline/syncManagerOffline.js +1 -1
  82. package/cjs/sync/offline/syncTasks/fromObjectSyncTask.js +2 -2
  83. package/cjs/sync/polling/fetchers/mySegmentsFetcher.js +2 -2
  84. package/cjs/sync/polling/fetchers/segmentChangesFetcher.js +1 -1
  85. package/cjs/sync/polling/pollingManagerCS.js +8 -7
  86. package/cjs/sync/polling/pollingManagerSS.js +5 -4
  87. package/cjs/sync/polling/syncTasks/mySegmentsSyncTask.js +1 -1
  88. package/cjs/sync/polling/syncTasks/segmentsSyncTask.js +1 -1
  89. package/cjs/sync/polling/syncTasks/splitsSyncTask.js +1 -1
  90. package/cjs/sync/polling/updaters/mySegmentsUpdater.js +3 -3
  91. package/cjs/sync/polling/updaters/segmentChangesUpdater.js +2 -2
  92. package/cjs/sync/polling/updaters/splitChangesUpdater.js +2 -2
  93. package/cjs/sync/streaming/AuthClient/index.js +3 -3
  94. package/cjs/sync/streaming/SSEClient/index.js +2 -1
  95. package/cjs/sync/streaming/SSEHandler/NotificationParser.js +1 -1
  96. package/cjs/sync/streaming/SSEHandler/index.js +3 -3
  97. package/cjs/sync/streaming/UpdateWorkers/SegmentsUpdateWorker.js +1 -1
  98. package/cjs/sync/streaming/mySegmentsV2utils.js +1 -1
  99. package/cjs/sync/streaming/pushManager.js +27 -19
  100. package/cjs/sync/submitters/eventsSyncTask.js +17 -5
  101. package/cjs/sync/submitters/impressionCountsSyncTask.js +1 -1
  102. package/cjs/sync/submitters/impressionsSyncTask.js +15 -3
  103. package/cjs/sync/submitters/metricsSyncTask.js +3 -3
  104. package/cjs/sync/submitters/submitterManager.js +6 -5
  105. package/cjs/sync/submitters/submitterSyncTask.js +1 -1
  106. package/cjs/sync/syncManagerOnline.js +14 -15
  107. package/cjs/trackers/eventTracker.js +11 -4
  108. package/cjs/trackers/impressionObserver/impressionObserverCS.js +1 -1
  109. package/cjs/trackers/impressionObserver/impressionObserverSS.js +1 -1
  110. package/cjs/trackers/impressionObserver/utils.js +8 -1
  111. package/cjs/trackers/impressionsTracker.js +9 -8
  112. package/cjs/utils/MinEvents.js +2 -1
  113. package/cjs/utils/consent.js +10 -0
  114. package/cjs/utils/constants/index.js +5 -1
  115. package/cjs/utils/inputValidation/apiKey.js +1 -1
  116. package/cjs/utils/inputValidation/attribute.js +4 -4
  117. package/cjs/utils/inputValidation/attributes.js +2 -2
  118. package/cjs/utils/inputValidation/event.js +1 -1
  119. package/cjs/utils/inputValidation/eventProperties.js +7 -5
  120. package/cjs/utils/inputValidation/eventValue.js +1 -1
  121. package/cjs/utils/inputValidation/key.js +6 -5
  122. package/cjs/utils/inputValidation/preloadedData.js +8 -8
  123. package/cjs/utils/inputValidation/split.js +1 -1
  124. package/cjs/utils/inputValidation/splits.js +2 -2
  125. package/cjs/utils/inputValidation/trafficType.js +1 -1
  126. package/cjs/utils/inputValidation/trafficTypeExistance.js +1 -1
  127. package/cjs/utils/jwt/index.js +1 -1
  128. package/cjs/utils/key/index.js +3 -3
  129. package/cjs/utils/lang/index.js +13 -16
  130. package/cjs/utils/lang/maps.js +16 -2
  131. package/cjs/utils/murmur3/common.js +1 -1
  132. package/cjs/utils/murmur3/murmur3.js +10 -10
  133. package/cjs/utils/murmur3/murmur3_128.js +1 -1
  134. package/cjs/utils/murmur3/murmur3_128_x86.js +37 -37
  135. package/cjs/utils/murmur3/murmur3_64.js +1 -1
  136. package/cjs/utils/settingsValidation/consent.js +16 -0
  137. package/cjs/utils/settingsValidation/impressionsMode.js +6 -6
  138. package/cjs/utils/settingsValidation/index.js +32 -14
  139. package/cjs/utils/settingsValidation/integrations/configurable.js +1 -1
  140. package/cjs/utils/settingsValidation/integrations/pluggable.js +1 -1
  141. package/cjs/utils/settingsValidation/localhost/builtin.js +2 -2
  142. package/cjs/utils/settingsValidation/logger/builtinLogger.js +3 -3
  143. package/cjs/utils/settingsValidation/logger/commons.js +1 -1
  144. package/cjs/utils/settingsValidation/logger/pluggableLogger.js +1 -1
  145. package/cjs/utils/settingsValidation/runtime.js +11 -0
  146. package/cjs/utils/settingsValidation/splitFilters.js +1 -1
  147. package/cjs/utils/settingsValidation/storage/storageCS.js +1 -1
  148. package/cjs/utils/timeTracker/index.js +3 -3
  149. package/esm/evaluator/matchers/ew.js +4 -4
  150. package/esm/integrations/ga/GoogleAnalyticsToSplit.js +4 -2
  151. package/esm/integrations/ga/SplitToGoogleAnalytics.js +4 -2
  152. package/esm/listeners/browser.js +14 -10
  153. package/esm/logger/constants.js +6 -2
  154. package/esm/logger/messages/debug.js +3 -3
  155. package/esm/logger/messages/error.js +4 -3
  156. package/esm/logger/messages/info.js +7 -4
  157. package/esm/sdkClient/client.js +3 -2
  158. package/esm/sdkClient/clientCS.js +1 -1
  159. package/esm/sdkClient/clientInputValidation.js +6 -8
  160. package/esm/sdkClient/sdkClient.js +1 -4
  161. package/esm/sdkClient/sdkClientMethodCS.js +1 -5
  162. package/esm/sdkClient/sdkClientMethodCSWithTT.js +1 -9
  163. package/esm/sdkFactory/index.js +8 -6
  164. package/esm/sdkFactory/userConsentProps.js +36 -0
  165. package/esm/services/splitApi.js +2 -1
  166. package/esm/storages/KeyBuilder.js +2 -6
  167. package/esm/storages/KeyBuilderCS.js +11 -1
  168. package/esm/storages/inLocalStorage/MySegmentsCacheInLocal.js +23 -3
  169. package/esm/storages/inLocalStorage/index.js +1 -1
  170. package/esm/storages/inMemory/ImpressionsCacheInMemory.js +15 -1
  171. package/esm/storages/inMemory/InMemoryStorage.js +1 -1
  172. package/esm/storages/inMemory/InMemoryStorageCS.js +1 -1
  173. package/esm/storages/inRedis/RedisAdapter.js +15 -2
  174. package/esm/storages/pluggable/index.js +2 -2
  175. package/esm/sync/offline/splitsParser/splitsParserFromFile.js +1 -1
  176. package/esm/sync/polling/fetchers/mySegmentsFetcher.js +2 -2
  177. package/esm/sync/polling/fetchers/segmentChangesFetcher.js +2 -2
  178. package/esm/sync/polling/pollingManagerCS.js +2 -1
  179. package/esm/sync/polling/pollingManagerSS.js +2 -1
  180. package/esm/sync/polling/syncTasks/mySegmentsSyncTask.js +1 -1
  181. package/esm/sync/polling/updaters/mySegmentsUpdater.js +2 -2
  182. package/esm/sync/streaming/SSEClient/index.js +2 -1
  183. package/esm/sync/streaming/UpdateWorkers/SegmentsUpdateWorker.js +1 -1
  184. package/esm/sync/streaming/pushManager.js +13 -5
  185. package/esm/sync/submitters/eventsSyncTask.js +18 -6
  186. package/esm/sync/submitters/impressionsSyncTask.js +13 -1
  187. package/esm/sync/submitters/submitterManager.js +2 -1
  188. package/esm/sync/syncManagerOnline.js +14 -15
  189. package/esm/trackers/eventTracker.js +8 -1
  190. package/esm/trackers/impressionObserver/utils.js +7 -1
  191. package/esm/trackers/impressionsTracker.js +6 -5
  192. package/esm/utils/consent.js +6 -0
  193. package/esm/utils/constants/index.js +4 -0
  194. package/esm/utils/inputValidation/attributes.js +1 -1
  195. package/esm/utils/inputValidation/eventProperties.js +4 -2
  196. package/esm/utils/inputValidation/key.js +2 -1
  197. package/esm/utils/lang/index.js +12 -15
  198. package/esm/utils/lang/maps.js +14 -1
  199. package/esm/utils/settingsValidation/consent.js +12 -0
  200. package/esm/utils/settingsValidation/impressionsMode.js +7 -7
  201. package/esm/utils/settingsValidation/index.js +28 -10
  202. package/esm/utils/settingsValidation/runtime.js +7 -0
  203. package/package.json +6 -6
  204. package/src/evaluator/matchers/ew.ts +4 -4
  205. package/src/evaluator/parser/index.ts +1 -1
  206. package/src/evaluator/types.ts +2 -2
  207. package/src/evaluator/value/index.ts +2 -2
  208. package/src/evaluator/value/sanitize.ts +2 -2
  209. package/src/integrations/ga/GoogleAnalyticsToSplit.ts +7 -4
  210. package/src/integrations/ga/SplitToGoogleAnalytics.ts +7 -4
  211. package/src/integrations/pluggable.ts +2 -2
  212. package/src/integrations/types.ts +5 -0
  213. package/src/listeners/browser.ts +13 -9
  214. package/src/logger/constants.ts +6 -2
  215. package/src/logger/messages/debug.ts +3 -3
  216. package/src/logger/messages/error.ts +4 -3
  217. package/src/logger/messages/info.ts +7 -4
  218. package/src/logger/types.ts +4 -0
  219. package/src/sdkClient/client.ts +3 -2
  220. package/src/sdkClient/clientCS.ts +1 -1
  221. package/src/sdkClient/clientInputValidation.ts +8 -7
  222. package/src/sdkClient/sdkClient.ts +2 -5
  223. package/src/sdkClient/sdkClientMethodCS.ts +1 -6
  224. package/src/sdkClient/sdkClientMethodCSWithTT.ts +2 -11
  225. package/src/sdkFactory/index.ts +9 -7
  226. package/src/sdkFactory/types.ts +2 -1
  227. package/src/sdkFactory/userConsentProps.ts +42 -0
  228. package/src/storages/KeyBuilder.ts +2 -6
  229. package/src/storages/KeyBuilderCS.ts +13 -1
  230. package/src/storages/inLocalStorage/MySegmentsCacheInLocal.ts +23 -3
  231. package/src/storages/inLocalStorage/index.ts +1 -1
  232. package/src/storages/inMemory/ImpressionsCacheInMemory.ts +22 -1
  233. package/src/storages/inMemory/InMemoryStorage.ts +1 -1
  234. package/src/storages/inMemory/InMemoryStorageCS.ts +1 -1
  235. package/src/storages/inRedis/RedisAdapter.ts +8 -2
  236. package/src/storages/pluggable/index.ts +2 -2
  237. package/src/storages/types.ts +6 -2
  238. package/src/sync/offline/splitsParser/splitsParserFromFile.ts +1 -1
  239. package/src/sync/polling/fetchers/mySegmentsFetcher.ts +2 -1
  240. package/src/sync/polling/fetchers/types.ts +1 -0
  241. package/src/sync/polling/pollingManagerCS.ts +3 -6
  242. package/src/sync/polling/pollingManagerSS.ts +3 -8
  243. package/src/sync/polling/syncTasks/mySegmentsSyncTask.ts +2 -1
  244. package/src/sync/polling/types.ts +0 -12
  245. package/src/sync/polling/updaters/mySegmentsUpdater.ts +2 -1
  246. package/src/sync/streaming/SSEClient/index.ts +2 -1
  247. package/src/sync/streaming/UpdateWorkers/SegmentsUpdateWorker.ts +1 -1
  248. package/src/sync/streaming/pushManager.ts +19 -16
  249. package/src/sync/streaming/types.ts +5 -25
  250. package/src/sync/submitters/eventsSyncTask.ts +19 -6
  251. package/src/sync/submitters/impressionsSyncTask.ts +16 -1
  252. package/src/sync/submitters/submitterManager.ts +4 -8
  253. package/src/sync/syncManagerOnline.ts +20 -24
  254. package/src/sync/types.ts +4 -1
  255. package/src/trackers/eventTracker.ts +11 -3
  256. package/src/trackers/impressionObserver/utils.ts +8 -1
  257. package/src/trackers/impressionsTracker.ts +7 -8
  258. package/src/types.ts +22 -1
  259. package/src/utils/consent.ts +8 -0
  260. package/src/utils/constants/index.ts +5 -0
  261. package/src/utils/inputValidation/attributes.ts +1 -2
  262. package/src/utils/inputValidation/eventProperties.ts +4 -2
  263. package/src/utils/lang/index.ts +15 -18
  264. package/src/utils/lang/maps.ts +15 -1
  265. package/src/utils/settingsValidation/consent.ts +16 -0
  266. package/src/utils/settingsValidation/impressionsMode.ts +8 -8
  267. package/src/utils/settingsValidation/index.ts +29 -10
  268. package/src/utils/settingsValidation/runtime.ts +9 -0
  269. package/src/utils/settingsValidation/types.ts +12 -6
  270. package/types/evaluator/types.d.ts +2 -2
  271. package/types/evaluator/value/index.d.ts +1 -1
  272. package/types/evaluator/value/sanitize.d.ts +1 -1
  273. package/types/integrations/ga/GoogleAnalyticsToSplit.d.ts +2 -2
  274. package/types/integrations/ga/SplitToGoogleAnalytics.d.ts +2 -3
  275. package/types/integrations/types.d.ts +4 -0
  276. package/types/logger/constants.d.ts +6 -2
  277. package/types/logger/types.d.ts +4 -0
  278. package/types/sdkClient/clientAttributesDecoration.d.ts +1 -1
  279. package/types/sdkClient/clientInputValidation.d.ts +2 -3
  280. package/types/sdkFactory/types.d.ts +1 -1
  281. package/types/sdkFactory/userConsentProps.d.ts +6 -0
  282. package/types/storages/KeyBuilderCS.d.ts +2 -0
  283. package/types/storages/inMemory/ImpressionsCacheInMemory.d.ts +9 -0
  284. package/types/storages/inMemory/index.d.ts +10 -0
  285. package/types/storages/inRedis/RedisAdapter.d.ts +1 -1
  286. package/types/storages/parseSegments.d.ts +6 -0
  287. package/types/storages/types.d.ts +3 -1
  288. package/types/sync/polling/fetchers/mySegmentsFetcher.d.ts +1 -1
  289. package/types/sync/polling/fetchers/types.d.ts +1 -1
  290. package/types/sync/polling/pollingManagerCS.d.ts +2 -5
  291. package/types/sync/polling/pollingManagerSS.d.ts +2 -5
  292. package/types/sync/polling/types.d.ts +0 -11
  293. package/types/sync/polling/updaters/mySegmentsUpdater.d.ts +1 -1
  294. package/types/sync/streaming/UpdateWorkers/SegmentsUpdateWorker.d.ts +1 -1
  295. package/types/sync/streaming/pushManager.d.ts +3 -7
  296. package/types/sync/streaming/pushManagerCS.d.ts +1 -12
  297. package/types/sync/streaming/pushManagerSS.d.ts +1 -11
  298. package/types/sync/streaming/types.d.ts +3 -23
  299. package/types/sync/submitters/submitterManager.d.ts +2 -4
  300. package/types/sync/syncManagerOnline.d.ts +3 -3
  301. package/types/sync/types.d.ts +3 -0
  302. package/types/trackers/eventTracker.d.ts +2 -2
  303. package/types/trackers/impressionObserver/utils.d.ts +4 -0
  304. package/types/trackers/impressionsTracker.d.ts +2 -3
  305. package/types/types.d.ts +22 -1
  306. package/types/utils/consent.d.ts +2 -0
  307. package/types/utils/constants/index.d.ts +3 -0
  308. package/types/utils/lang/index.d.ts +6 -5
  309. package/types/utils/lang/maps.d.ts +7 -0
  310. package/types/utils/settingsValidation/consent.d.ts +6 -0
  311. package/types/utils/settingsValidation/impressionsMode.d.ts +1 -1
  312. package/types/utils/settingsValidation/runtime/browser.d.ts +2 -0
  313. package/types/utils/settingsValidation/runtime/node.d.ts +2 -0
  314. package/types/utils/settingsValidation/runtime.d.ts +2 -0
  315. package/types/utils/settingsValidation/types.d.ts +12 -6
  316. package/types/utils/settingsValidation/userConsent.d.ts +5 -0
@@ -39,34 +39,34 @@ function hash128x86(key, seed) {
39
39
  k2 = ((key.charCodeAt(i + 4) & 0xff)) | ((key.charCodeAt(i + 5) & 0xff) << 8) | ((key.charCodeAt(i + 6) & 0xff) << 16) | ((key.charCodeAt(i + 7) & 0xff) << 24);
40
40
  k3 = ((key.charCodeAt(i + 8) & 0xff)) | ((key.charCodeAt(i + 9) & 0xff) << 8) | ((key.charCodeAt(i + 10) & 0xff) << 16) | ((key.charCodeAt(i + 11) & 0xff) << 24);
41
41
  k4 = ((key.charCodeAt(i + 12) & 0xff)) | ((key.charCodeAt(i + 13) & 0xff) << 8) | ((key.charCodeAt(i + 14) & 0xff) << 16) | ((key.charCodeAt(i + 15) & 0xff) << 24);
42
- k1 = common_1.x86Multiply(k1, c1);
43
- k1 = common_1.x86Rotl(k1, 15);
44
- k1 = common_1.x86Multiply(k1, c2);
42
+ k1 = (0, common_1.x86Multiply)(k1, c1);
43
+ k1 = (0, common_1.x86Rotl)(k1, 15);
44
+ k1 = (0, common_1.x86Multiply)(k1, c2);
45
45
  h1 ^= k1;
46
- h1 = common_1.x86Rotl(h1, 19);
46
+ h1 = (0, common_1.x86Rotl)(h1, 19);
47
47
  h1 += h2;
48
- h1 = common_1.x86Multiply(h1, 5) + 0x561ccd1b;
49
- k2 = common_1.x86Multiply(k2, c2);
50
- k2 = common_1.x86Rotl(k2, 16);
51
- k2 = common_1.x86Multiply(k2, c3);
48
+ h1 = (0, common_1.x86Multiply)(h1, 5) + 0x561ccd1b;
49
+ k2 = (0, common_1.x86Multiply)(k2, c2);
50
+ k2 = (0, common_1.x86Rotl)(k2, 16);
51
+ k2 = (0, common_1.x86Multiply)(k2, c3);
52
52
  h2 ^= k2;
53
- h2 = common_1.x86Rotl(h2, 17);
53
+ h2 = (0, common_1.x86Rotl)(h2, 17);
54
54
  h2 += h3;
55
- h2 = common_1.x86Multiply(h2, 5) + 0x0bcaa747;
56
- k3 = common_1.x86Multiply(k3, c3);
57
- k3 = common_1.x86Rotl(k3, 17);
58
- k3 = common_1.x86Multiply(k3, c4);
55
+ h2 = (0, common_1.x86Multiply)(h2, 5) + 0x0bcaa747;
56
+ k3 = (0, common_1.x86Multiply)(k3, c3);
57
+ k3 = (0, common_1.x86Rotl)(k3, 17);
58
+ k3 = (0, common_1.x86Multiply)(k3, c4);
59
59
  h3 ^= k3;
60
- h3 = common_1.x86Rotl(h3, 15);
60
+ h3 = (0, common_1.x86Rotl)(h3, 15);
61
61
  h3 += h4;
62
- h3 = common_1.x86Multiply(h3, 5) + 0x96cd1c35;
63
- k4 = common_1.x86Multiply(k4, c4);
64
- k4 = common_1.x86Rotl(k4, 18);
65
- k4 = common_1.x86Multiply(k4, c1);
62
+ h3 = (0, common_1.x86Multiply)(h3, 5) + 0x96cd1c35;
63
+ k4 = (0, common_1.x86Multiply)(k4, c4);
64
+ k4 = (0, common_1.x86Rotl)(k4, 18);
65
+ k4 = (0, common_1.x86Multiply)(k4, c1);
66
66
  h4 ^= k4;
67
- h4 = common_1.x86Rotl(h4, 13);
67
+ h4 = (0, common_1.x86Rotl)(h4, 13);
68
68
  h4 += h1;
69
- h4 = common_1.x86Multiply(h4, 5) + 0x32ac3b17;
69
+ h4 = (0, common_1.x86Multiply)(h4, 5) + 0x32ac3b17;
70
70
  }
71
71
  k1 = 0;
72
72
  k2 = 0;
@@ -79,9 +79,9 @@ function hash128x86(key, seed) {
79
79
  k4 ^= key.charCodeAt(i + 13) << 8;
80
80
  case 13:
81
81
  k4 ^= key.charCodeAt(i + 12);
82
- k4 = common_1.x86Multiply(k4, c4);
83
- k4 = common_1.x86Rotl(k4, 18);
84
- k4 = common_1.x86Multiply(k4, c1);
82
+ k4 = (0, common_1.x86Multiply)(k4, c4);
83
+ k4 = (0, common_1.x86Rotl)(k4, 18);
84
+ k4 = (0, common_1.x86Multiply)(k4, c1);
85
85
  h4 ^= k4;
86
86
  case 12:
87
87
  k3 ^= key.charCodeAt(i + 11) << 24;
@@ -91,9 +91,9 @@ function hash128x86(key, seed) {
91
91
  k3 ^= key.charCodeAt(i + 9) << 8;
92
92
  case 9:
93
93
  k3 ^= key.charCodeAt(i + 8);
94
- k3 = common_1.x86Multiply(k3, c3);
95
- k3 = common_1.x86Rotl(k3, 17);
96
- k3 = common_1.x86Multiply(k3, c4);
94
+ k3 = (0, common_1.x86Multiply)(k3, c3);
95
+ k3 = (0, common_1.x86Rotl)(k3, 17);
96
+ k3 = (0, common_1.x86Multiply)(k3, c4);
97
97
  h3 ^= k3;
98
98
  case 8:
99
99
  k2 ^= key.charCodeAt(i + 7) << 24;
@@ -103,9 +103,9 @@ function hash128x86(key, seed) {
103
103
  k2 ^= key.charCodeAt(i + 5) << 8;
104
104
  case 5:
105
105
  k2 ^= key.charCodeAt(i + 4);
106
- k2 = common_1.x86Multiply(k2, c2);
107
- k2 = common_1.x86Rotl(k2, 16);
108
- k2 = common_1.x86Multiply(k2, c3);
106
+ k2 = (0, common_1.x86Multiply)(k2, c2);
107
+ k2 = (0, common_1.x86Rotl)(k2, 16);
108
+ k2 = (0, common_1.x86Multiply)(k2, c3);
109
109
  h2 ^= k2;
110
110
  case 4:
111
111
  k1 ^= key.charCodeAt(i + 3) << 24;
@@ -115,9 +115,9 @@ function hash128x86(key, seed) {
115
115
  k1 ^= key.charCodeAt(i + 1) << 8;
116
116
  case 1:
117
117
  k1 ^= key.charCodeAt(i);
118
- k1 = common_1.x86Multiply(k1, c1);
119
- k1 = common_1.x86Rotl(k1, 15);
120
- k1 = common_1.x86Multiply(k1, c2);
118
+ k1 = (0, common_1.x86Multiply)(k1, c1);
119
+ k1 = (0, common_1.x86Rotl)(k1, 15);
120
+ k1 = (0, common_1.x86Multiply)(k1, c2);
121
121
  h1 ^= k1;
122
122
  }
123
123
  h1 ^= key.length;
@@ -130,10 +130,10 @@ function hash128x86(key, seed) {
130
130
  h2 += h1;
131
131
  h3 += h1;
132
132
  h4 += h1;
133
- h1 = common_1.x86Fmix(h1);
134
- h2 = common_1.x86Fmix(h2);
135
- h3 = common_1.x86Fmix(h3);
136
- h4 = common_1.x86Fmix(h4);
133
+ h1 = (0, common_1.x86Fmix)(h1);
134
+ h2 = (0, common_1.x86Fmix)(h2);
135
+ h3 = (0, common_1.x86Fmix)(h3);
136
+ h4 = (0, common_1.x86Fmix)(h4);
137
137
  h1 += h2;
138
138
  h1 += h3;
139
139
  h1 += h4;
@@ -149,6 +149,6 @@ function hash128x86(key, seed) {
149
149
  * @param {string} str
150
150
  */
151
151
  function hash128(str, seed) {
152
- return hash128x86(common_1.UTF16ToUTF8(str), seed >>> 0);
152
+ return hash128x86((0, common_1.UTF16ToUTF8)(str), seed >>> 0);
153
153
  }
154
154
  exports.hash128 = hash128;
@@ -27,7 +27,7 @@ function hex2dec(s) {
27
27
  * @param {string} str
28
28
  */
29
29
  function hash64(str) {
30
- var hex = murmur3_128_1.hash128(str).slice(0, 16);
30
+ var hex = (0, murmur3_128_1.hash128)(str).slice(0, 16);
31
31
  return {
32
32
  hex: hex,
33
33
  dec: hex2dec(hex) // KeyList notification
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateConsent = void 0;
4
+ var constants_1 = require("../../logger/constants");
5
+ var constants_2 = require("../constants");
6
+ var lang_1 = require("../lang");
7
+ var userConsentValues = [constants_2.CONSENT_DECLINED, constants_2.CONSENT_GRANTED, constants_2.CONSENT_UNKNOWN];
8
+ function validateConsent(_a) {
9
+ var userConsent = _a.userConsent, log = _a.log;
10
+ userConsent = (0, lang_1.stringToUpperCase)(userConsent);
11
+ if (userConsentValues.indexOf(userConsent) > -1)
12
+ return userConsent;
13
+ log.error(constants_1.ERROR_INVALID_CONFIG_PARAM, ['userConsent', userConsentValues, constants_2.CONSENT_GRANTED]);
14
+ return constants_2.CONSENT_GRANTED;
15
+ }
16
+ exports.validateConsent = validateConsent;
@@ -3,12 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.validImpressionsMode = void 0;
4
4
  var constants_1 = require("../../logger/constants");
5
5
  var constants_2 = require("../constants");
6
+ var lang_1 = require("../lang");
6
7
  function validImpressionsMode(log, impressionsMode) {
7
- impressionsMode = impressionsMode.toUpperCase();
8
- if ([constants_2.DEBUG, constants_2.OPTIMIZED].indexOf(impressionsMode) === -1) {
9
- log.error(constants_1.ERROR_INVALID_IMPRESSIONS_MODE, [[constants_2.DEBUG, constants_2.OPTIMIZED], constants_2.OPTIMIZED]);
10
- impressionsMode = constants_2.OPTIMIZED;
11
- }
12
- return impressionsMode;
8
+ impressionsMode = (0, lang_1.stringToUpperCase)(impressionsMode);
9
+ if ([constants_2.DEBUG, constants_2.OPTIMIZED].indexOf(impressionsMode) > -1)
10
+ return impressionsMode;
11
+ log.error(constants_1.ERROR_INVALID_CONFIG_PARAM, ['impressionsMode', [constants_2.DEBUG, constants_2.OPTIMIZED], constants_2.OPTIMIZED]);
12
+ return constants_2.OPTIMIZED;
13
13
  }
14
14
  exports.validImpressionsMode = validImpressionsMode;
@@ -6,6 +6,8 @@ var mode_1 = require("./mode");
6
6
  var splitFilters_1 = require("./splitFilters");
7
7
  var constants_1 = require("../constants");
8
8
  var impressionsMode_1 = require("./impressionsMode");
9
+ var key_1 = require("../inputValidation/key");
10
+ var trafficType_1 = require("../inputValidation/trafficType");
9
11
  var base = {
10
12
  // Define which kind of object you want to retrieve from SplitFactory
11
13
  mode: constants_1.STANDALONE_MODE,
@@ -36,6 +38,8 @@ var base = {
36
38
  eventsPushRate: 60,
37
39
  // how many events will be queued before flushing
38
40
  eventsQueueSize: 500,
41
+ // how many impressions will be queued before flushing
42
+ impressionsQueueSize: 30000,
39
43
  // backoff base seconds to wait before re attempting to connect to push notifications
40
44
  pushRetryBackoffBase: 1,
41
45
  },
@@ -67,10 +71,6 @@ var base = {
67
71
  impressionsMode: constants_1.OPTIMIZED,
68
72
  localhostMode: undefined
69
73
  },
70
- runtime: {
71
- ip: false,
72
- hostname: false
73
- },
74
74
  // Logger
75
75
  log: undefined
76
76
  };
@@ -85,9 +85,9 @@ function fromSecondsToMillis(n) {
85
85
  * @param validationParams defaults and fields validators used to validate and creates a settings object from a given config
86
86
  */
87
87
  function settingsValidation(config, validationParams) {
88
- var defaults = validationParams.defaults, runtime = validationParams.runtime, storage = validationParams.storage, integrations = validationParams.integrations, logger = validationParams.logger, localhost = validationParams.localhost;
88
+ var defaults = validationParams.defaults, runtime = validationParams.runtime, storage = validationParams.storage, integrations = validationParams.integrations, logger = validationParams.logger, localhost = validationParams.localhost, consent = validationParams.consent;
89
89
  // creates a settings object merging base, defaults and config objects.
90
- var withDefaults = lang_1.merge({}, base, defaults, config);
90
+ var withDefaults = (0, lang_1.merge)({}, base, defaults, config);
91
91
  // ensure a valid logger.
92
92
  // First thing to validate, since other validators might use the logger.
93
93
  var log = logger(withDefaults); // @ts-ignore, modify readonly prop
@@ -106,19 +106,34 @@ function settingsValidation(config, validationParams) {
106
106
  startup.eventsFirstPushWindow = fromSecondsToMillis(startup.eventsFirstPushWindow);
107
107
  // ensure a valid SDK mode
108
108
  // @ts-ignore, modify readonly prop
109
- withDefaults.mode = mode_1.mode(withDefaults.core.authorizationKey, withDefaults.mode);
109
+ withDefaults.mode = (0, mode_1.mode)(withDefaults.core.authorizationKey, withDefaults.mode);
110
110
  // ensure a valid Storage based on mode defined.
111
111
  // @ts-ignore, modify readonly prop
112
112
  if (storage)
113
113
  withDefaults.storage = storage(withDefaults);
114
- // Although `key` is mandatory according to TS declaration files, it can be omitted in LOCALHOST mode. In that case, the value `localhost_key` is used.
115
- if (withDefaults.mode === constants_1.LOCALHOST_MODE && withDefaults.core.key === undefined) {
116
- withDefaults.core.key = 'localhost_key';
114
+ // Validate key and TT (for client-side)
115
+ if (validationParams.acceptKey) {
116
+ var maybeKey = withDefaults.core.key;
117
+ // Although `key` is required in client-side, it can be omitted in LOCALHOST mode. In that case, the value `localhost_key` is used.
118
+ if (withDefaults.mode === constants_1.LOCALHOST_MODE && maybeKey === undefined) {
119
+ withDefaults.core.key = 'localhost_key';
120
+ }
121
+ else {
122
+ // Keeping same behaviour than JS SDK: if settings key or TT are invalid,
123
+ // `false` value is used as binded key/TT of the default client, which leads to some issues.
124
+ // @ts-ignore, @TODO handle invalid keys as a non-recoverable error?
125
+ withDefaults.core.key = (0, key_1.validateKey)(log, maybeKey, 'Client instantiation');
126
+ }
127
+ if (validationParams.acceptTT) {
128
+ var maybeTT = withDefaults.core.trafficType;
129
+ if (maybeTT !== undefined) { // @ts-ignore
130
+ withDefaults.core.trafficType = (0, trafficType_1.validateTrafficType)(log, maybeTT, 'Client instantiation');
131
+ }
132
+ }
117
133
  }
118
134
  // Current ip/hostname information
119
135
  // @ts-ignore, modify readonly prop
120
- if (runtime)
121
- withDefaults.runtime = runtime(withDefaults);
136
+ withDefaults.runtime = runtime(withDefaults);
122
137
  // ensure a valid list of integrations.
123
138
  // `integrations` returns an array of valid integration items.
124
139
  // @ts-ignore, modify readonly prop
@@ -134,11 +149,14 @@ function settingsValidation(config, validationParams) {
134
149
  scheduler.pushRetryBackoffBase = fromSecondsToMillis(scheduler.pushRetryBackoffBase);
135
150
  }
136
151
  // validate the `splitFilters` settings and parse splits query
137
- var splitFiltersValidation = splitFilters_1.validateSplitFilters(log, withDefaults.sync.splitFilters, withDefaults.mode);
152
+ var splitFiltersValidation = (0, splitFilters_1.validateSplitFilters)(log, withDefaults.sync.splitFilters, withDefaults.mode);
138
153
  withDefaults.sync.splitFilters = splitFiltersValidation.validFilters;
139
154
  withDefaults.sync.__splitFiltersValidation = splitFiltersValidation;
140
155
  // ensure a valid impressionsMode
141
- withDefaults.sync.impressionsMode = impressionsMode_1.validImpressionsMode(log, withDefaults.sync.impressionsMode);
156
+ withDefaults.sync.impressionsMode = (0, impressionsMode_1.validImpressionsMode)(log, withDefaults.sync.impressionsMode);
157
+ // ensure a valid user consent value
158
+ // @ts-ignore, modify readonly prop
159
+ withDefaults.userConsent = consent(withDefaults);
142
160
  return withDefaults;
143
161
  }
144
162
  exports.settingsValidation = settingsValidation;
@@ -13,6 +13,6 @@ var lang_1 = require("../../lang");
13
13
  */
14
14
  function validateConfigurableIntegrations(settings, validIntegrationTypes) {
15
15
  if (validIntegrationTypes === void 0) { validIntegrationTypes = []; }
16
- return common_1.validateIntegrations(settings, function (integration) { return integration && lang_1.isString(integration.type) && validIntegrationTypes.indexOf(integration.type) > -1; }, 'Integration items must have a valid "type" value');
16
+ return (0, common_1.validateIntegrations)(settings, function (integration) { return integration && (0, lang_1.isString)(integration.type) && validIntegrationTypes.indexOf(integration.type) > -1; }, 'Integration items must have a valid "type" value');
17
17
  }
18
18
  exports.validateConfigurableIntegrations = validateConfigurableIntegrations;
@@ -10,6 +10,6 @@ var common_1 = require("./common");
10
10
  * @returns {Array} array of valid integration factories. The array might be empty if `settings` object does not have valid integrations.
11
11
  */
12
12
  function validatePluggableIntegrations(settings) {
13
- return common_1.validateIntegrations(settings, function (integration) { return typeof integration === 'function'; }, 'Integration items must be functions that initialize the integrations');
13
+ return (0, common_1.validateIntegrations)(settings, function (integration) { return typeof integration === 'function'; }, 'Integration items must be functions that initialize the integrations');
14
14
  }
15
15
  exports.validatePluggableIntegrations = validatePluggableIntegrations;
@@ -12,7 +12,7 @@ var pluggable_1 = require("./pluggable");
12
12
  */
13
13
  function validateLocalhostWithDefault(settings) {
14
14
  if (!settings.sync.localhostMode)
15
- return LocalhostFromObject_1.LocalhostFromObject();
16
- return pluggable_1.validateLocalhost(settings) || LocalhostFromObject_1.LocalhostFromObject();
15
+ return (0, LocalhostFromObject_1.LocalhostFromObject)();
16
+ return (0, pluggable_1.validateLocalhost)(settings) || (0, LocalhostFromObject_1.LocalhostFromObject)();
17
17
  }
18
18
  exports.validateLocalhostWithDefault = validateLocalhostWithDefault;
@@ -19,14 +19,14 @@ var ENV_VAR_KEY = 'SPLITIO_DEBUG';
19
19
  */
20
20
  var initialState = String(
21
21
  // eslint-disable-next-line no-undef
22
- isNode_1.isNode ? process.env[ENV_VAR_KEY] : isLocalStorageAvailable_1.isLocalStorageAvailable() ? localStorage.getItem(LS_KEY) : '');
22
+ isNode_1.isNode ? process.env[ENV_VAR_KEY] : (0, isLocalStorageAvailable_1.isLocalStorageAvailable)() ? localStorage.getItem(LS_KEY) : '');
23
23
  // By default it starts disabled.
24
24
  var initialLogLevel = logger_1.LogLevels.NONE;
25
25
  // Kept to avoid a breaking change ('on', 'enable' and 'enabled' are equivalent)
26
26
  if (/^(enabled?|on)/i.test(initialState)) {
27
27
  initialLogLevel = logger_1.LogLevels.DEBUG;
28
28
  }
29
- else if (logger_1.isLogLevelString(initialState)) {
29
+ else if ((0, logger_1.isLogLevelString)(initialState)) {
30
30
  initialLogLevel = initialState;
31
31
  }
32
32
  /**
@@ -37,7 +37,7 @@ else if (logger_1.isLogLevelString(initialState)) {
37
37
  */
38
38
  function validateLogger(settings) {
39
39
  var debug = settings.debug;
40
- var logLevel = debug !== undefined ? commons_1.getLogLevel(debug) : initialLogLevel;
40
+ var logLevel = debug !== undefined ? (0, commons_1.getLogLevel)(debug) : initialLogLevel;
41
41
  var log = new logger_1.Logger({ logLevel: logLevel || initialLogLevel }, allCodes);
42
42
  // @ts-ignore // if logLevel is undefined at this point, it means that settings `debug` value is invalid
43
43
  if (!logLevel)
@@ -18,7 +18,7 @@ function getLogLevel(debugValue) {
18
18
  return logger_1.LogLevels.NONE;
19
19
  }
20
20
  }
21
- else if (typeof debugValue === 'string' && logger_1.isLogLevelString(debugValue)) {
21
+ else if (typeof debugValue === 'string' && (0, logger_1.isLogLevelString)(debugValue)) {
22
22
  return debugValue;
23
23
  }
24
24
  else {
@@ -21,7 +21,7 @@ function validateLogger(settings) {
21
21
  if (debug !== undefined) {
22
22
  if (isLogger(debug))
23
23
  return debug;
24
- logLevel = commons_1.getLogLevel(settings.debug);
24
+ logLevel = (0, commons_1.getLogLevel)(settings.debug);
25
25
  }
26
26
  var log = new logger_1.Logger({ logLevel: logLevel || initialLogLevel });
27
27
  // @ts-ignore // `debug` value is invalid if logLevel is undefined at this point
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateRuntime = void 0;
4
+ // For client-side SDKs, machine IP and Hostname are not captured and sent to Split backend.
5
+ function validateRuntime() {
6
+ return {
7
+ ip: false,
8
+ hostname: false
9
+ };
10
+ }
11
+ exports.validateRuntime = validateRuntime;
@@ -36,7 +36,7 @@ function validateFilterType(maybeFilterType) {
36
36
  */
37
37
  function validateSplitFilter(log, type, values, maxLength) {
38
38
  // validate and remove invalid and duplicated values
39
- var result = splits_1.validateSplits(log, values, constants_2.LOG_PREFIX_SETTINGS, type + " filter", type + " filter value");
39
+ var result = (0, splits_1.validateSplits)(log, values, constants_2.LOG_PREFIX_SETTINGS, type + " filter", type + " filter value");
40
40
  if (result) {
41
41
  // check max length
42
42
  if (result.length > maxLength)
@@ -5,7 +5,7 @@ var InMemoryStorageCS_1 = require("../../../storages/inMemory/InMemoryStorageCS"
5
5
  var constants_1 = require("../../../logger/constants");
6
6
  var constants_2 = require("../../../utils/constants");
7
7
  function __InLocalStorageMockFactory(params) {
8
- var result = InMemoryStorageCS_1.InMemoryStorageCSFactory(params);
8
+ var result = (0, InMemoryStorageCS_1.InMemoryStorageCSFactory)(params);
9
9
  result.splits.checkCache = function () { return true; }; // to emit SDK_READY_FROM_CACHE
10
10
  return result;
11
11
  }
@@ -125,12 +125,12 @@ exports.TrackerAPI = {
125
125
  * @return {Function | Promise} The stop function for this specific task or the promise received with the callbacks registered.
126
126
  */
127
127
  start: function (log, task, collectors, promise, now) {
128
- var taskUniqueId = lang_1.uniqueId();
128
+ var taskUniqueId = (0, lang_1.uniqueId)();
129
129
  var taskCollector = getCollectorForTask(task, collectors);
130
130
  var result;
131
131
  // If we are registering a promise with this task, we should count the status and the exceptions as well
132
132
  // as stopping the task when the promise resolves. Then return the promise
133
- if (thenable_1.thenable(promise)) {
133
+ if ((0, thenable_1.thenable)(promise)) {
134
134
  result = this.__attachToPromise(log, promise, task, taskCollector, taskUniqueId);
135
135
  }
136
136
  else {
@@ -147,7 +147,7 @@ exports.TrackerAPI = {
147
147
  var cb = getCallbackForTask(task, taskCollector);
148
148
  timers[trackingKey] = {
149
149
  cb: cb,
150
- timer: timer_1.timer(now)
150
+ timer: (0, timer_1.timer)(now)
151
151
  };
152
152
  return result;
153
153
  },
@@ -1,9 +1,9 @@
1
1
  import { ENGINE_MATCHER_ENDS_WITH } from '../../logger/constants';
2
- import { endsWith as strEndsWith } from '../../utils/lang';
2
+ import { endsWith } from '../../utils/lang';
3
3
  export function endsWithMatcherContext(log, ruleAttr) {
4
4
  return function endsWithMatcher(runtimeAttr) {
5
- var endsWith = ruleAttr.some(function (e) { return strEndsWith(runtimeAttr, e); });
6
- log.debug(ENGINE_MATCHER_ENDS_WITH, [runtimeAttr, ruleAttr, endsWith]);
7
- return endsWith;
5
+ var strEndsWith = ruleAttr.some(function (e) { return endsWith(runtimeAttr, e); });
6
+ log.debug(ENGINE_MATCHER_ENDS_WITH, [runtimeAttr, ruleAttr, strEndsWith]);
7
+ return strEndsWith;
8
8
  };
9
9
  }
@@ -1,7 +1,9 @@
1
1
  import { GaToSplit } from './GaToSplit';
2
2
  export function GoogleAnalyticsToSplit(options) {
3
3
  // GaToSplit integration factory
4
- return function (params) {
4
+ function GoogleAnalyticsToSplitFactory(params) {
5
5
  return GaToSplit(options, params);
6
- };
6
+ }
7
+ GoogleAnalyticsToSplitFactory.type = 'GOOGLE_ANALYTICS_TO_SPLIT';
8
+ return GoogleAnalyticsToSplitFactory;
7
9
  }
@@ -2,7 +2,9 @@ import { SplitToGa } from './SplitToGa';
2
2
  export function SplitToGoogleAnalytics(options) {
3
3
  if (options === void 0) { options = {}; }
4
4
  // SplitToGa integration factory
5
- return function (params) {
5
+ function SplitToGoogleAnalyticsFactory(params) {
6
6
  return new SplitToGa(params.settings.log, options);
7
- };
7
+ }
8
+ SplitToGoogleAnalyticsFactory.type = 'SPLIT_TO_GOOGLE_ANALYTICS';
9
+ return SplitToGoogleAnalyticsFactory;
8
10
  }
@@ -3,6 +3,7 @@ import { fromImpressionCountsCollector } from '../sync/submitters/impressionCoun
3
3
  import { OPTIMIZED, DEBUG } from '../utils/constants';
4
4
  import { objectAssign } from '../utils/lang/objectAssign';
5
5
  import { CLEANUP_REGISTERING, CLEANUP_DEREGISTERING } from '../logger/constants';
6
+ import { isConsentGranted } from '../utils/consent';
6
7
  // 'unload' event is used instead of 'beforeunload', since 'unload' is not a cancelable event, so no other listeners can stop the event from occurring.
7
8
  var UNLOAD_DOM_EVENT = 'unload';
8
9
  var EVENT_NAME = 'for unload page event.';
@@ -48,15 +49,18 @@ var BrowserSignalListener = /** @class */ (function () {
48
49
  BrowserSignalListener.prototype.flushData = function () {
49
50
  if (!this.syncManager)
50
51
  return; // In consumer mode there is not sync manager and data to flush
51
- var eventsUrl = this.settings.urls.events;
52
- var extraMetadata = {
53
- // sim stands for Sync/Split Impressions Mode
54
- sim: this.settings.sync.impressionsMode === OPTIMIZED ? OPTIMIZED : DEBUG
55
- };
56
- this._flushData(eventsUrl + '/testImpressions/beacon', this.storage.impressions, this.serviceApi.postTestImpressionsBulk, this.fromImpressionsCollector, extraMetadata);
57
- this._flushData(eventsUrl + '/events/beacon', this.storage.events, this.serviceApi.postEventsBulk);
58
- if (this.storage.impressionCounts)
59
- this._flushData(eventsUrl + '/testImpressions/count/beacon', this.storage.impressionCounts, this.serviceApi.postTestImpressionsCount, fromImpressionCountsCollector);
52
+ // Flush data if there is user consent
53
+ if (isConsentGranted(this.settings)) {
54
+ var eventsUrl = this.settings.urls.events;
55
+ var extraMetadata = {
56
+ // sim stands for Sync/Split Impressions Mode
57
+ sim: this.settings.sync.impressionsMode === OPTIMIZED ? OPTIMIZED : DEBUG
58
+ };
59
+ this._flushData(eventsUrl + '/testImpressions/beacon', this.storage.impressions, this.serviceApi.postTestImpressionsBulk, this.fromImpressionsCollector, extraMetadata);
60
+ this._flushData(eventsUrl + '/events/beacon', this.storage.events, this.serviceApi.postEventsBulk);
61
+ if (this.storage.impressionCounts)
62
+ this._flushData(eventsUrl + '/testImpressions/count/beacon', this.storage.impressionCounts, this.serviceApi.postTestImpressionsCount, fromImpressionCountsCollector);
63
+ }
60
64
  // Close streaming connection
61
65
  if (this.syncManager.pushManager)
62
66
  this.syncManager.pushManager.stop();
@@ -66,7 +70,7 @@ var BrowserSignalListener = /** @class */ (function () {
66
70
  if (!cache.isEmpty()) {
67
71
  var dataPayload = fromCacheToPayload ? fromCacheToPayload(cache.state()) : cache.state();
68
72
  if (!this._sendBeacon(url, dataPayload, extraMetadata)) {
69
- postService(JSON.stringify(dataPayload)).catch(function () { }); // no-op just to catch a possible exceptions
73
+ postService(JSON.stringify(dataPayload)).catch(function () { }); // no-op just to catch a possible exception
70
74
  }
71
75
  cache.clear();
72
76
  }
@@ -60,13 +60,16 @@ export var STREAMING_RECONNECT = 111;
60
60
  export var STREAMING_CONNECTING = 112;
61
61
  export var STREAMING_DISABLED = 113;
62
62
  export var STREAMING_DISCONNECTING = 114;
63
- export var SUBMITTERS_PUSH_FULL_EVENTS_QUEUE = 115;
63
+ export var SUBMITTERS_PUSH_FULL_QUEUE = 115;
64
64
  export var SUBMITTERS_PUSH = 116;
65
65
  export var SYNC_START_POLLING = 117;
66
66
  export var SYNC_CONTINUE_POLLING = 118;
67
67
  export var SYNC_STOP_POLLING = 119;
68
68
  export var EVENTS_TRACKER_SUCCESS = 120;
69
69
  export var IMPRESSIONS_TRACKER_SUCCESS = 121;
70
+ export var USER_CONSENT_UPDATED = 122;
71
+ export var USER_CONSENT_NOT_UPDATED = 123;
72
+ export var USER_CONSENT_INITIAL = 124;
70
73
  export var ENGINE_VALUE_INVALID = 200;
71
74
  export var ENGINE_VALUE_NO_ATTRIBUTES = 201;
72
75
  export var CLIENT_NO_LISTENER = 202;
@@ -112,10 +115,11 @@ export var ERROR_INVALID_KEY_OBJECT = 317;
112
115
  export var ERROR_INVALID = 318;
113
116
  export var ERROR_EMPTY = 319;
114
117
  export var ERROR_EMPTY_ARRAY = 320;
115
- export var ERROR_INVALID_IMPRESSIONS_MODE = 321;
118
+ export var ERROR_INVALID_CONFIG_PARAM = 321;
116
119
  export var ERROR_HTTP = 322;
117
120
  export var ERROR_LOCALHOST_MODULE_REQUIRED = 323;
118
121
  export var ERROR_STORAGE_INVALID = 324;
122
+ export var ERROR_NOT_BOOLEAN = 325;
119
123
  // Log prefixes (a.k.a. tags or categories)
120
124
  export var LOG_PREFIX_SETTINGS = 'settings';
121
125
  export var LOG_PREFIX_INSTANTIATION = 'Factory instantiation';
@@ -30,9 +30,9 @@ export var codesDebug = codesInfo.concat([
30
30
  // SDK
31
31
  [c.CLEANUP_REGISTERING, c.LOG_PREFIX_CLEANUP + 'Registering cleanup handler %s'],
32
32
  [c.CLEANUP_DEREGISTERING, c.LOG_PREFIX_CLEANUP + 'Deregistering cleanup handler %s'],
33
- [c.RETRIEVE_CLIENT_DEFAULT, ' Retrieving default SDK client.'],
34
- [c.RETRIEVE_CLIENT_EXISTING, ' Retrieving existing SDK client.'],
35
- [c.RETRIEVE_MANAGER, ' Retrieving manager instance.'],
33
+ [c.RETRIEVE_CLIENT_DEFAULT, 'Retrieving default SDK client.'],
34
+ [c.RETRIEVE_CLIENT_EXISTING, 'Retrieving existing SDK client.'],
35
+ [c.RETRIEVE_MANAGER, 'Retrieving manager instance.'],
36
36
  // synchronizer
37
37
  [c.SYNC_OFFLINE_DATA, c.LOG_PREFIX_SYNC_OFFLINE + 'Splits data: \n%s'],
38
38
  [c.SYNC_SPLITS_FETCH, c.LOG_PREFIX_SYNC_SPLITS + 'Spin up split update using since = %s'],
@@ -4,7 +4,7 @@ export var codesError = [
4
4
  [c.ERROR_ENGINE_COMBINER_IFELSEIF, c.LOG_PREFIX_ENGINE_COMBINER + 'Invalid Split, no valid rules found'],
5
5
  // SDK
6
6
  [c.ERROR_LOGLEVEL_INVALID, 'logger: Invalid Log Level - No changes to the logs will be applied.'],
7
- [c.ERROR_CLIENT_CANNOT_GET_READY, ' The SDK will not get ready. Reason: %s'],
7
+ [c.ERROR_CLIENT_CANNOT_GET_READY, 'The SDK will not get ready. Reason: %s'],
8
8
  [c.ERROR_IMPRESSIONS_TRACKER, c.LOG_PREFIX_IMPRESSIONS_TRACKER + 'Could not store impressions bulk with %s impression(s). Error: %s'],
9
9
  [c.ERROR_IMPRESSIONS_LISTENER, c.LOG_PREFIX_IMPRESSIONS_TRACKER + 'Impression listener logImpression method threw: %s.'],
10
10
  [c.ERROR_EVENTS_TRACKER, c.LOG_PREFIX_EVENTS_TRACKER + 'Failed to queue %s'],
@@ -12,7 +12,7 @@ export var codesError = [
12
12
  [c.ERROR_SYNC_OFFLINE_LOADING, c.LOG_PREFIX_SYNC_OFFLINE + 'There was an issue loading the mock Splits data, no changes will be applied to the current cache. %s'],
13
13
  [c.ERROR_STREAMING_SSE, c.LOG_PREFIX_SYNC_STREAMING + 'Failed to connect or error on streaming connection, with error message: %s'],
14
14
  [c.ERROR_STREAMING_AUTH, c.LOG_PREFIX_SYNC_STREAMING + 'Failed to authenticate for streaming. Error: %s.'],
15
- [c.ERROR_HTTP, ' Response status is not OK. Status: %s. URL: %s. Message: %s'],
15
+ [c.ERROR_HTTP, 'Response status is not OK. Status: %s. URL: %s. Message: %s'],
16
16
  // client status
17
17
  [c.ERROR_CLIENT_LISTENER, 'A listener was added for %s on the SDK, which has already fired and won\'t be emitted again. The callback won\'t be executed.'],
18
18
  [c.ERROR_CLIENT_DESTROYED, '%s: Client has already been destroyed - no calls possible.'],
@@ -27,8 +27,9 @@ export var codesError = [
27
27
  [c.ERROR_INVALID, '%s: you passed an invalid %s. It must be a non-empty string.'],
28
28
  [c.ERROR_EMPTY, '%s: you passed an empty %s. It must be a non-empty string.'],
29
29
  [c.ERROR_EMPTY_ARRAY, '%s: %s must be a non-empty array.'],
30
+ [c.ERROR_NOT_BOOLEAN, '%s: provided param must be a boolean value.'],
30
31
  // initialization / settings validation
31
- [c.ERROR_INVALID_IMPRESSIONS_MODE, c.LOG_PREFIX_SETTINGS + ': you passed an invalid "impressionsMode". It should be one of the following values: %s. Defaulting to "%s" mode.'],
32
+ [c.ERROR_INVALID_CONFIG_PARAM, c.LOG_PREFIX_SETTINGS + ': you passed an invalid "%s" config param. It should be one of the following values: %s. Defaulting to "%s".'],
32
33
  [c.ERROR_LOCALHOST_MODULE_REQUIRED, c.LOG_PREFIX_SETTINGS + ': an invalid value was received for "sync.localhostMode" config. A valid entity should be provided for localhost mode.'],
33
34
  [c.ERROR_STORAGE_INVALID, c.LOG_PREFIX_SETTINGS + ': The provided storage is invalid.%s Fallbacking into default MEMORY storage'],
34
35
  ];
@@ -8,16 +8,19 @@ export var codesInfo = codesWarn.concat([
8
8
  // SDK
9
9
  [c.IMPRESSION, c.LOG_PREFIX_IMPRESSIONS_TRACKER + 'Split: %s. Key: %s. Evaluation: %s. Label: %s'],
10
10
  [c.IMPRESSION_QUEUEING, c.LOG_PREFIX_IMPRESSIONS_TRACKER + 'Queueing corresponding impression.'],
11
- [c.NEW_SHARED_CLIENT, ' New shared client instance created.'],
12
- [c.NEW_FACTORY, ' New Split SDK instance created.'],
11
+ [c.NEW_SHARED_CLIENT, 'New shared client instance created.'],
12
+ [c.NEW_FACTORY, 'New Split SDK instance created.'],
13
13
  [c.EVENTS_TRACKER_SUCCESS, c.LOG_PREFIX_EVENTS_TRACKER + 'Successfully queued %s'],
14
14
  [c.IMPRESSIONS_TRACKER_SUCCESS, c.LOG_PREFIX_IMPRESSIONS_TRACKER + 'Successfully stored %s impression(s).'],
15
+ [c.USER_CONSENT_UPDATED, 'setUserConsent: consent status changed from %s to %s.'],
16
+ [c.USER_CONSENT_NOT_UPDATED, 'setUserConsent: call had no effect because it was the current consent status (%s).'],
17
+ [c.USER_CONSENT_INITIAL, 'Starting the SDK with %s user consent. No data will be sent.'],
15
18
  // synchronizer
16
19
  [c.POLLING_SMART_PAUSING, c.LOG_PREFIX_SYNC_POLLING + 'Turning segments data polling %s.'],
17
20
  [c.POLLING_START, c.LOG_PREFIX_SYNC_POLLING + 'Starting polling'],
18
21
  [c.POLLING_STOP, c.LOG_PREFIX_SYNC_POLLING + 'Stopping polling'],
19
22
  [c.SYNC_SPLITS_FETCH_RETRY, c.LOG_PREFIX_SYNC_SPLITS + 'Retrying download of splits #%s. Reason: %s'],
20
- [c.SUBMITTERS_PUSH_FULL_EVENTS_QUEUE, c.LOG_PREFIX_SYNC_SUBMITTERS + 'Flushing full events queue and reseting timer.'],
23
+ [c.SUBMITTERS_PUSH_FULL_QUEUE, c.LOG_PREFIX_SYNC_SUBMITTERS + 'Flushing full %s queue and reseting timer.'],
21
24
  [c.SUBMITTERS_PUSH, c.LOG_PREFIX_SYNC_SUBMITTERS + 'Pushing %s %s.'],
22
25
  [c.STREAMING_REFRESH_TOKEN, c.LOG_PREFIX_SYNC_STREAMING + 'Refreshing streaming token in %s seconds, and connecting streaming in %s seconds.'],
23
26
  [c.STREAMING_RECONNECT, c.LOG_PREFIX_SYNC_STREAMING + 'Attempting to reconnect streaming in %s seconds.'],
@@ -26,5 +29,5 @@ export var codesInfo = codesWarn.concat([
26
29
  [c.STREAMING_DISCONNECTING, c.LOG_PREFIX_SYNC_STREAMING + 'Disconnecting streaming.'],
27
30
  [c.SYNC_START_POLLING, c.LOG_PREFIX_SYNC_MANAGER + 'Streaming not available. Starting polling.'],
28
31
  [c.SYNC_CONTINUE_POLLING, c.LOG_PREFIX_SYNC_MANAGER + 'Streaming couldn\'t connect. Continue polling.'],
29
- [c.SYNC_STOP_POLLING, c.LOG_PREFIX_SYNC_MANAGER + 'Streaming (re)connected. Syncing and stopping polling.'],
32
+ [c.SYNC_STOP_POLLING, c.LOG_PREFIX_SYNC_MANAGER + 'Streaming connected. Syncing and stopping polling.'],
30
33
  ]);
@@ -11,7 +11,8 @@ import { IMPRESSION, IMPRESSION_QUEUEING } from '../logger/constants';
11
11
  */
12
12
  // @TODO missing time tracking to collect telemetry
13
13
  export function clientFactory(params) {
14
- var readinessManager = params.sdkReadinessManager.readinessManager, storage = params.storage, _a = params.settings, log = _a.log, mode = _a.mode, impressionsTracker = params.impressionsTracker, eventTracker = params.eventTracker;
14
+ var readinessManager = params.sdkReadinessManager.readinessManager, storage = params.storage, settings = params.settings, impressionsTracker = params.impressionsTracker, eventTracker = params.eventTracker;
15
+ var log = settings.log, mode = settings.mode;
15
16
  function getTreatment(key, splitName, attributes, withConfig) {
16
17
  if (withConfig === void 0) { withConfig = false; }
17
18
  var wrapUp = function (evaluationResult) {
@@ -96,6 +97,6 @@ export function clientFactory(params) {
96
97
  getTreatments: getTreatments,
97
98
  getTreatmentsWithConfig: getTreatmentsWithConfig,
98
99
  track: track,
99
- isBrowserClient: false
100
+ isClientSide: false
100
101
  };
101
102
  }