@splitsoftware/splitio-commons 1.2.1-rc.1 → 1.2.1-rc.10

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 (278) 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 +1 -1
  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 +8 -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 +7 -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 +37 -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/segmentChangesFetcher.js +1 -1
  84. package/cjs/sync/polling/pollingManagerCS.js +6 -6
  85. package/cjs/sync/polling/pollingManagerSS.js +3 -3
  86. package/cjs/sync/polling/syncTasks/mySegmentsSyncTask.js +1 -1
  87. package/cjs/sync/polling/syncTasks/segmentsSyncTask.js +1 -1
  88. package/cjs/sync/polling/syncTasks/splitsSyncTask.js +1 -1
  89. package/cjs/sync/polling/updaters/mySegmentsUpdater.js +1 -1
  90. package/cjs/sync/polling/updaters/segmentChangesUpdater.js +2 -2
  91. package/cjs/sync/polling/updaters/splitChangesUpdater.js +2 -2
  92. package/cjs/sync/streaming/AuthClient/index.js +3 -3
  93. package/cjs/sync/streaming/SSEClient/index.js +2 -1
  94. package/cjs/sync/streaming/SSEHandler/NotificationParser.js +1 -1
  95. package/cjs/sync/streaming/SSEHandler/index.js +3 -3
  96. package/cjs/sync/streaming/mySegmentsV2utils.js +1 -1
  97. package/cjs/sync/streaming/pushManager.js +24 -17
  98. package/cjs/sync/submitters/eventsSyncTask.js +17 -5
  99. package/cjs/sync/submitters/impressionCountsSyncTask.js +1 -1
  100. package/cjs/sync/submitters/impressionsSyncTask.js +15 -3
  101. package/cjs/sync/submitters/metricsSyncTask.js +3 -3
  102. package/cjs/sync/submitters/submitterManager.js +4 -4
  103. package/cjs/sync/submitters/submitterSyncTask.js +1 -1
  104. package/cjs/sync/syncManagerOnline.js +12 -8
  105. package/cjs/trackers/eventTracker.js +11 -4
  106. package/cjs/trackers/impressionObserver/impressionObserverCS.js +1 -1
  107. package/cjs/trackers/impressionObserver/impressionObserverSS.js +1 -1
  108. package/cjs/trackers/impressionObserver/utils.js +8 -1
  109. package/cjs/trackers/impressionsTracker.js +9 -8
  110. package/cjs/utils/MinEvents.js +2 -1
  111. package/cjs/utils/consent.js +10 -0
  112. package/cjs/utils/constants/index.js +5 -1
  113. package/cjs/utils/inputValidation/apiKey.js +1 -1
  114. package/cjs/utils/inputValidation/attribute.js +4 -4
  115. package/cjs/utils/inputValidation/attributes.js +2 -2
  116. package/cjs/utils/inputValidation/event.js +1 -1
  117. package/cjs/utils/inputValidation/eventProperties.js +5 -5
  118. package/cjs/utils/inputValidation/eventValue.js +1 -1
  119. package/cjs/utils/inputValidation/key.js +6 -5
  120. package/cjs/utils/inputValidation/preloadedData.js +8 -8
  121. package/cjs/utils/inputValidation/split.js +1 -1
  122. package/cjs/utils/inputValidation/splits.js +2 -2
  123. package/cjs/utils/inputValidation/trafficType.js +1 -1
  124. package/cjs/utils/inputValidation/trafficTypeExistance.js +1 -1
  125. package/cjs/utils/jwt/index.js +1 -1
  126. package/cjs/utils/key/index.js +3 -3
  127. package/cjs/utils/lang/index.js +13 -4
  128. package/cjs/utils/lang/maps.js +16 -2
  129. package/cjs/utils/murmur3/common.js +1 -1
  130. package/cjs/utils/murmur3/murmur3.js +10 -10
  131. package/cjs/utils/murmur3/murmur3_128.js +1 -1
  132. package/cjs/utils/murmur3/murmur3_128_x86.js +37 -37
  133. package/cjs/utils/murmur3/murmur3_64.js +1 -1
  134. package/cjs/utils/settingsValidation/consent.js +16 -0
  135. package/cjs/utils/settingsValidation/impressionsMode.js +6 -6
  136. package/cjs/utils/settingsValidation/index.js +32 -14
  137. package/cjs/utils/settingsValidation/integrations/configurable.js +1 -1
  138. package/cjs/utils/settingsValidation/integrations/pluggable.js +1 -1
  139. package/cjs/utils/settingsValidation/localhost/builtin.js +2 -2
  140. package/cjs/utils/settingsValidation/logger/builtinLogger.js +3 -3
  141. package/cjs/utils/settingsValidation/logger/commons.js +1 -1
  142. package/cjs/utils/settingsValidation/logger/pluggableLogger.js +1 -1
  143. package/cjs/utils/settingsValidation/runtime.js +11 -0
  144. package/cjs/utils/settingsValidation/splitFilters.js +1 -1
  145. package/cjs/utils/settingsValidation/storage/storageCS.js +1 -1
  146. package/cjs/utils/timeTracker/index.js +3 -3
  147. package/esm/integrations/ga/GoogleAnalyticsToSplit.js +4 -2
  148. package/esm/integrations/ga/SplitToGoogleAnalytics.js +4 -2
  149. package/esm/listeners/browser.js +14 -10
  150. package/esm/logger/constants.js +5 -2
  151. package/esm/logger/messages/debug.js +3 -3
  152. package/esm/logger/messages/error.js +4 -3
  153. package/esm/logger/messages/info.js +6 -4
  154. package/esm/sdkClient/client.js +3 -2
  155. package/esm/sdkClient/clientCS.js +1 -1
  156. package/esm/sdkClient/clientInputValidation.js +6 -8
  157. package/esm/sdkClient/sdkClient.js +1 -4
  158. package/esm/sdkClient/sdkClientMethodCS.js +1 -5
  159. package/esm/sdkClient/sdkClientMethodCSWithTT.js +1 -9
  160. package/esm/sdkFactory/index.js +8 -6
  161. package/esm/sdkFactory/userConsentProps.js +33 -0
  162. package/esm/services/splitApi.js +2 -1
  163. package/esm/storages/KeyBuilder.js +2 -6
  164. package/esm/storages/KeyBuilderCS.js +11 -1
  165. package/esm/storages/inLocalStorage/MySegmentsCacheInLocal.js +23 -3
  166. package/esm/storages/inLocalStorage/index.js +1 -1
  167. package/esm/storages/inMemory/ImpressionsCacheInMemory.js +15 -1
  168. package/esm/storages/inMemory/InMemoryStorage.js +1 -1
  169. package/esm/storages/inMemory/InMemoryStorageCS.js +1 -1
  170. package/esm/storages/inRedis/RedisAdapter.js +15 -2
  171. package/esm/storages/pluggable/index.js +2 -2
  172. package/esm/sync/offline/splitsParser/splitsParserFromFile.js +1 -1
  173. package/esm/sync/polling/fetchers/segmentChangesFetcher.js +2 -2
  174. package/esm/sync/streaming/SSEClient/index.js +2 -1
  175. package/esm/sync/streaming/pushManager.js +9 -2
  176. package/esm/sync/submitters/eventsSyncTask.js +18 -6
  177. package/esm/sync/submitters/impressionsSyncTask.js +13 -1
  178. package/esm/sync/syncManagerOnline.js +11 -7
  179. package/esm/trackers/eventTracker.js +8 -1
  180. package/esm/trackers/impressionObserver/utils.js +7 -1
  181. package/esm/trackers/impressionsTracker.js +6 -5
  182. package/esm/utils/consent.js +6 -0
  183. package/esm/utils/constants/index.js +4 -0
  184. package/esm/utils/inputValidation/attributes.js +1 -1
  185. package/esm/utils/inputValidation/key.js +2 -1
  186. package/esm/utils/lang/index.js +12 -4
  187. package/esm/utils/lang/maps.js +14 -1
  188. package/esm/utils/settingsValidation/consent.js +12 -0
  189. package/esm/utils/settingsValidation/impressionsMode.js +7 -7
  190. package/esm/utils/settingsValidation/index.js +28 -10
  191. package/esm/utils/settingsValidation/runtime.js +7 -0
  192. package/package.json +8 -8
  193. package/src/evaluator/parser/index.ts +1 -1
  194. package/src/evaluator/types.ts +2 -2
  195. package/src/evaluator/value/index.ts +2 -2
  196. package/src/evaluator/value/sanitize.ts +2 -2
  197. package/src/integrations/ga/GoogleAnalyticsToSplit.ts +7 -4
  198. package/src/integrations/ga/SplitToGoogleAnalytics.ts +7 -4
  199. package/src/integrations/pluggable.ts +2 -2
  200. package/src/integrations/types.ts +5 -0
  201. package/src/listeners/browser.ts +13 -9
  202. package/src/logger/constants.ts +5 -2
  203. package/src/logger/messages/debug.ts +3 -3
  204. package/src/logger/messages/error.ts +4 -3
  205. package/src/logger/messages/info.ts +6 -4
  206. package/src/logger/types.ts +4 -0
  207. package/src/sdkClient/client.ts +3 -2
  208. package/src/sdkClient/clientCS.ts +1 -1
  209. package/src/sdkClient/clientInputValidation.ts +8 -7
  210. package/src/sdkClient/sdkClient.ts +2 -5
  211. package/src/sdkClient/sdkClientMethodCS.ts +1 -6
  212. package/src/sdkClient/sdkClientMethodCSWithTT.ts +2 -11
  213. package/src/sdkFactory/index.ts +9 -7
  214. package/src/sdkFactory/types.ts +2 -1
  215. package/src/sdkFactory/userConsentProps.ts +40 -0
  216. package/src/storages/KeyBuilder.ts +2 -6
  217. package/src/storages/KeyBuilderCS.ts +13 -1
  218. package/src/storages/inLocalStorage/MySegmentsCacheInLocal.ts +23 -3
  219. package/src/storages/inLocalStorage/index.ts +1 -1
  220. package/src/storages/inMemory/ImpressionsCacheInMemory.ts +22 -1
  221. package/src/storages/inMemory/InMemoryStorage.ts +1 -1
  222. package/src/storages/inMemory/InMemoryStorageCS.ts +1 -1
  223. package/src/storages/inRedis/RedisAdapter.ts +8 -2
  224. package/src/storages/pluggable/index.ts +2 -2
  225. package/src/storages/types.ts +6 -2
  226. package/src/sync/offline/splitsParser/splitsParserFromFile.ts +1 -1
  227. package/src/sync/streaming/SSEClient/index.ts +2 -1
  228. package/src/sync/streaming/pushManager.ts +11 -2
  229. package/src/sync/submitters/eventsSyncTask.ts +19 -6
  230. package/src/sync/submitters/impressionsSyncTask.ts +16 -1
  231. package/src/sync/syncManagerOnline.ts +13 -7
  232. package/src/sync/types.ts +4 -1
  233. package/src/trackers/eventTracker.ts +11 -3
  234. package/src/trackers/impressionObserver/utils.ts +8 -1
  235. package/src/trackers/impressionsTracker.ts +7 -8
  236. package/src/types.ts +22 -1
  237. package/src/utils/consent.ts +8 -0
  238. package/src/utils/constants/index.ts +5 -0
  239. package/src/utils/inputValidation/attributes.ts +1 -2
  240. package/src/utils/lang/index.ts +15 -4
  241. package/src/utils/lang/maps.ts +15 -1
  242. package/src/utils/settingsValidation/consent.ts +16 -0
  243. package/src/utils/settingsValidation/impressionsMode.ts +8 -8
  244. package/src/utils/settingsValidation/index.ts +29 -10
  245. package/src/utils/settingsValidation/runtime.ts +9 -0
  246. package/src/utils/settingsValidation/types.ts +12 -6
  247. package/types/evaluator/types.d.ts +2 -2
  248. package/types/evaluator/value/index.d.ts +1 -1
  249. package/types/evaluator/value/sanitize.d.ts +1 -1
  250. package/types/integrations/ga/GoogleAnalyticsToSplit.d.ts +2 -2
  251. package/types/integrations/ga/SplitToGoogleAnalytics.d.ts +2 -3
  252. package/types/integrations/types.d.ts +4 -0
  253. package/types/logger/constants.d.ts +5 -2
  254. package/types/logger/types.d.ts +4 -0
  255. package/types/sdkClient/clientAttributesDecoration.d.ts +1 -1
  256. package/types/sdkClient/clientInputValidation.d.ts +2 -3
  257. package/types/sdkFactory/types.d.ts +1 -1
  258. package/types/sdkFactory/userConsentProps.d.ts +6 -0
  259. package/types/storages/KeyBuilderCS.d.ts +2 -0
  260. package/types/storages/inMemory/ImpressionsCacheInMemory.d.ts +9 -0
  261. package/types/storages/inRedis/RedisAdapter.d.ts +1 -1
  262. package/types/storages/types.d.ts +3 -1
  263. package/types/sync/types.d.ts +3 -0
  264. package/types/trackers/eventTracker.d.ts +2 -2
  265. package/types/trackers/impressionObserver/utils.d.ts +4 -0
  266. package/types/trackers/impressionsTracker.d.ts +2 -3
  267. package/types/types.d.ts +22 -1
  268. package/types/utils/consent.d.ts +2 -0
  269. package/types/utils/constants/index.d.ts +3 -0
  270. package/types/utils/lang/index.d.ts +6 -1
  271. package/types/utils/lang/maps.d.ts +7 -0
  272. package/types/utils/settingsValidation/consent.d.ts +6 -0
  273. package/types/utils/settingsValidation/impressionsMode.d.ts +1 -1
  274. package/types/utils/settingsValidation/runtime/browser.d.ts +2 -0
  275. package/types/utils/settingsValidation/runtime/node.d.ts +2 -0
  276. package/types/utils/settingsValidation/runtime.d.ts +2 -0
  277. package/types/utils/settingsValidation/types.d.ts +12 -6
  278. package/types/utils/settingsValidation/userConsent.d.ts +5 -0
package/src/types.ts CHANGED
@@ -54,6 +54,11 @@ type EventConsts = {
54
54
  * @typedef {string} SDKMode
55
55
  */
56
56
  export type SDKMode = 'standalone' | 'consumer' | 'localhost' | 'consumer_partial';
57
+ /**
58
+ * User consent status.
59
+ * @typedef {string} ConsentStatus
60
+ */
61
+ export type ConsentStatus = 'GRANTED' | 'DECLINED' | 'UNKNOWN';
57
62
  /**
58
63
  * Settings interface. This is a representation of the settings the SDK expose, that's why
59
64
  * most of it's props are readonly. Only features should be rewritten when localhost mode is active.
@@ -73,6 +78,7 @@ export interface ISettings {
73
78
  readonly scheduler: {
74
79
  featuresRefreshRate: number,
75
80
  impressionsRefreshRate: number,
81
+ impressionsQueueSize: number,
76
82
  metricsRefreshRate: number,
77
83
  segmentsRefreshRate: number,
78
84
  offlineRefreshRate: number,
@@ -110,6 +116,7 @@ export interface ISettings {
110
116
  },
111
117
  readonly log: ILogger
112
118
  readonly impressionListener?: unknown
119
+ readonly userConsent?: ConsentStatus
113
120
  }
114
121
  /**
115
122
  * Log levels.
@@ -255,6 +262,13 @@ interface INodeBasicSettings extends ISharedSettings {
255
262
  * @default 300
256
263
  */
257
264
  impressionsRefreshRate?: number,
265
+ /**
266
+ * The maximum number of impression items we want to queue. If we queue more values, it will trigger a flush and reset the timer.
267
+ * If you use a 0 here, the queue will have no maximum size.
268
+ * @property {number} impressionsQueueSize
269
+ * @default 30000
270
+ */
271
+ impressionsQueueSize?: number,
258
272
  /**
259
273
  * The SDK sends diagnostic metrics to Split servers. This parameters controls this metric flush period in seconds.
260
274
  * @property {number} metricsRefreshRate
@@ -384,7 +398,7 @@ interface IBasicClient extends IStatusInterface {
384
398
 
385
399
  // Whether the client implements the client-side API, i.e, with bound key, (true), or the server-side API (false).
386
400
  // Exposed for internal purposes only. Not considered part of the public API, and might be renamed eventually.
387
- isBrowserClient: boolean
401
+ isClientSide: boolean
388
402
  }
389
403
  /**
390
404
  * Common definitions between SDK instances for different environments interface.
@@ -769,6 +783,13 @@ export namespace SplitIO {
769
783
  * @default 60
770
784
  */
771
785
  impressionsRefreshRate?: number,
786
+ /**
787
+ * The maximum number of impression items we want to queue. If we queue more values, it will trigger a flush and reset the timer.
788
+ * If you use a 0 here, the queue will have no maximum size.
789
+ * @property {number} impressionsQueueSize
790
+ * @default 30000
791
+ */
792
+ impressionsQueueSize?: number,
772
793
  /**
773
794
  * The SDK sends diagnostic metrics to Split servers. This parameters controls this metric flush period in seconds.
774
795
  * @property {number} metricsRefreshRate
@@ -0,0 +1,8 @@
1
+ import { ISettings } from '../types';
2
+ import { CONSENT_GRANTED } from './constants';
3
+
4
+ export function isConsentGranted(settings: ISettings) {
5
+ const userConsent = settings.userConsent;
6
+ // undefined userConsent is handled as granted (default)
7
+ return !userConsent || userConsent === CONSENT_GRANTED;
8
+ }
@@ -32,3 +32,8 @@ export const STORAGE_MEMORY: StorageType = 'MEMORY';
32
32
  export const STORAGE_LOCALSTORAGE: StorageType = 'LOCALSTORAGE';
33
33
  export const STORAGE_REDIS: StorageType = 'REDIS';
34
34
  export const STORAGE_PLUGGABLE: StorageType = 'PLUGGABLE';
35
+
36
+ // User consent
37
+ export const CONSENT_GRANTED = 'GRANTED'; // The user has granted consent for tracking events and impressions
38
+ export const CONSENT_DECLINED = 'DECLINED'; // The user has declined consent for tracking events and impressions
39
+ export const CONSENT_UNKNOWN = 'UNKNOWN'; // The user has neither granted nor declined consent for tracking events and impressions
@@ -6,7 +6,7 @@ import { ERROR_NOT_PLAIN_OBJECT } from '../../logger/constants';
6
6
 
7
7
  export function validateAttributes(log: ILogger, maybeAttrs: any, method: string): SplitIO.Attributes | undefined | false {
8
8
  // Attributes are optional
9
- if (isObject(maybeAttrs) || maybeAttrs == undefined) // eslint-disable-line eqeqeq
9
+ if (maybeAttrs == undefined || isObject(maybeAttrs)) // eslint-disable-line eqeqeq
10
10
  return maybeAttrs;
11
11
 
12
12
  log.error(ERROR_NOT_PLAIN_OBJECT, [method, 'attributes']);
@@ -23,5 +23,4 @@ export function validateAttributesDeep(log: ILogger, maybeAttributes: Record<str
23
23
  });
24
24
 
25
25
  return result;
26
-
27
26
  }
@@ -89,7 +89,7 @@ export function get(obj: any, prop: any, val: any): any {
89
89
  /**
90
90
  * Parses an array into a map of different arrays, grouping by the specified prop value.
91
91
  */
92
- export function groupBy<T extends Record<string, any> >(source: T[], prop: string): Record<string, T[]> {
92
+ export function groupBy<T extends Record<string, any>>(source: T[], prop: string): Record<string, T[]> {
93
93
  const map: Record<string, any[]> = {};
94
94
 
95
95
  if (Array.isArray(source) && isString(prop)) {
@@ -151,10 +151,14 @@ export function isNaNNumber(val: any): boolean {
151
151
  }
152
152
 
153
153
  /**
154
- * Validates if a value is an object with the Object prototype (map object).
154
+ * Validates if a value is an object created by the Object constructor (plain object).
155
+ * It checks `constructor.name` to avoid false negatives when validating values on a separate VM context, which has its own global built-ins.
155
156
  */
156
- export function isObject(obj: any): boolean {
157
- return obj !== null && typeof obj === 'object' && obj.constructor === Object;
157
+ export function isObject(obj: any) {
158
+ return obj !== null && typeof obj === 'object' && (
159
+ obj.constructor === Object ||
160
+ (obj.constructor != null && obj.constructor.name === 'Object')
161
+ );
158
162
  }
159
163
 
160
164
  /**
@@ -164,6 +168,13 @@ export function isString(val: any): val is string {
164
168
  return typeof val === 'string' || val instanceof String;
165
169
  }
166
170
 
171
+ /**
172
+ * String sanitizer. Returns the provided value converted to uppercase if it is a string.
173
+ */
174
+ export function stringToUpperCase(val: any) {
175
+ return isString(val) ? val.toUpperCase() : val;
176
+ }
177
+
167
178
  /**
168
179
  * Deep copy version of Object.assign using recursion.
169
180
  * There are some assumptions here. It's for internal use and we don't need verbose errors
@@ -79,4 +79,18 @@ interface IMapConstructor {
79
79
  readonly prototype: IMap<any, any>;
80
80
  }
81
81
 
82
- export const _Map: IMapConstructor = typeof Map !== 'undefined' ? Map : MapPoly;
82
+ /**
83
+ * return the Map constructor to use. If native Map is not available or it doesn't support the required features (e.g., IE11),
84
+ * a ponyfill with minimal features is returned instead.
85
+ *
86
+ * Exported for testing purposes only.
87
+ */
88
+ export function __getMapConstructor(): IMapConstructor {
89
+ // eslint-disable-next-line compat/compat
90
+ if (typeof Array.from === 'function' && typeof Map === 'function' && Map.prototype && Map.prototype.values) {
91
+ return Map;
92
+ }
93
+ return MapPoly;
94
+ }
95
+
96
+ export const _Map = __getMapConstructor();
@@ -0,0 +1,16 @@
1
+ import { ERROR_INVALID_CONFIG_PARAM } from '../../logger/constants';
2
+ import { ILogger } from '../../logger/types';
3
+ import { ConsentStatus } from '../../types';
4
+ import { CONSENT_DECLINED, CONSENT_GRANTED, CONSENT_UNKNOWN } from '../constants';
5
+ import { stringToUpperCase } from '../lang';
6
+
7
+ const userConsentValues = [CONSENT_DECLINED, CONSENT_GRANTED, CONSENT_UNKNOWN];
8
+
9
+ export function validateConsent({ userConsent, log }: { userConsent?: any, log: ILogger }): ConsentStatus {
10
+ userConsent = stringToUpperCase(userConsent);
11
+
12
+ if (userConsentValues.indexOf(userConsent) > -1) return userConsent;
13
+
14
+ log.error(ERROR_INVALID_CONFIG_PARAM, ['userConsent', userConsentValues, CONSENT_GRANTED]);
15
+ return CONSENT_GRANTED;
16
+ }
@@ -1,14 +1,14 @@
1
- import { ERROR_INVALID_IMPRESSIONS_MODE } from '../../logger/constants';
1
+ import { ERROR_INVALID_CONFIG_PARAM } from '../../logger/constants';
2
2
  import { ILogger } from '../../logger/types';
3
3
  import { SplitIO } from '../../types';
4
4
  import { DEBUG, OPTIMIZED } from '../constants';
5
+ import { stringToUpperCase } from '../lang';
5
6
 
6
- export function validImpressionsMode(log: ILogger, impressionsMode: string): SplitIO.ImpressionsMode {
7
- impressionsMode = impressionsMode.toUpperCase();
8
- if ([DEBUG, OPTIMIZED].indexOf(impressionsMode) === -1) {
9
- log.error(ERROR_INVALID_IMPRESSIONS_MODE, [[DEBUG, OPTIMIZED], OPTIMIZED]);
10
- impressionsMode = OPTIMIZED;
11
- }
7
+ export function validImpressionsMode(log: ILogger, impressionsMode: any): SplitIO.ImpressionsMode {
8
+ impressionsMode = stringToUpperCase(impressionsMode);
12
9
 
13
- return impressionsMode as SplitIO.ImpressionsMode;
10
+ if ([DEBUG, OPTIMIZED].indexOf(impressionsMode) > -1) return impressionsMode;
11
+
12
+ log.error(ERROR_INVALID_CONFIG_PARAM, ['impressionsMode', [DEBUG, OPTIMIZED], OPTIMIZED]);
13
+ return OPTIMIZED;
14
14
  }
@@ -5,6 +5,8 @@ import { STANDALONE_MODE, OPTIMIZED, LOCALHOST_MODE } from '../constants';
5
5
  import { validImpressionsMode } from './impressionsMode';
6
6
  import { ISettingsValidationParams } from './types';
7
7
  import { ISettings } from '../../types';
8
+ import { validateKey } from '../inputValidation/key';
9
+ import { validateTrafficType } from '../inputValidation/trafficType';
8
10
 
9
11
  const base = {
10
12
  // Define which kind of object you want to retrieve from SplitFactory
@@ -38,6 +40,8 @@ const base = {
38
40
  eventsPushRate: 60,
39
41
  // how many events will be queued before flushing
40
42
  eventsQueueSize: 500,
43
+ // how many impressions will be queued before flushing
44
+ impressionsQueueSize: 30000,
41
45
  // backoff base seconds to wait before re attempting to connect to push notifications
42
46
  pushRetryBackoffBase: 1,
43
47
  },
@@ -78,11 +82,6 @@ const base = {
78
82
  localhostMode: undefined
79
83
  },
80
84
 
81
- runtime: {
82
- ip: false,
83
- hostname: false
84
- },
85
-
86
85
  // Logger
87
86
  log: undefined
88
87
  };
@@ -100,7 +99,7 @@ function fromSecondsToMillis(n: number) {
100
99
  */
101
100
  export function settingsValidation(config: unknown, validationParams: ISettingsValidationParams) {
102
101
 
103
- const { defaults, runtime, storage, integrations, logger, localhost } = validationParams;
102
+ const { defaults, runtime, storage, integrations, logger, localhost, consent } = validationParams;
104
103
 
105
104
  // creates a settings object merging base, defaults and config objects.
106
105
  const withDefaults = merge({}, base, defaults, config) as ISettings;
@@ -132,14 +131,30 @@ export function settingsValidation(config: unknown, validationParams: ISettingsV
132
131
  // @ts-ignore, modify readonly prop
133
132
  if (storage) withDefaults.storage = storage(withDefaults);
134
133
 
135
- // 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.
136
- if (withDefaults.mode === LOCALHOST_MODE && withDefaults.core.key === undefined) {
137
- withDefaults.core.key = 'localhost_key';
134
+ // Validate key and TT (for client-side)
135
+ if (validationParams.acceptKey) {
136
+ const maybeKey = withDefaults.core.key;
137
+ // Although `key` is required in client-side, it can be omitted in LOCALHOST mode. In that case, the value `localhost_key` is used.
138
+ if (withDefaults.mode === LOCALHOST_MODE && maybeKey === undefined) {
139
+ withDefaults.core.key = 'localhost_key';
140
+ } else {
141
+ // Keeping same behaviour than JS SDK: if settings key or TT are invalid,
142
+ // `false` value is used as binded key/TT of the default client, which leads to some issues.
143
+ // @ts-ignore, @TODO handle invalid keys as a non-recoverable error?
144
+ withDefaults.core.key = validateKey(log, maybeKey, 'Client instantiation');
145
+ }
146
+
147
+ if (validationParams.acceptTT) {
148
+ const maybeTT = withDefaults.core.trafficType;
149
+ if (maybeTT !== undefined) { // @ts-ignore
150
+ withDefaults.core.trafficType = validateTrafficType(log, maybeTT, 'Client instantiation');
151
+ }
152
+ }
138
153
  }
139
154
 
140
155
  // Current ip/hostname information
141
156
  // @ts-ignore, modify readonly prop
142
- if (runtime) withDefaults.runtime = runtime(withDefaults);
157
+ withDefaults.runtime = runtime(withDefaults);
143
158
 
144
159
  // ensure a valid list of integrations.
145
160
  // `integrations` returns an array of valid integration items.
@@ -164,5 +179,9 @@ export function settingsValidation(config: unknown, validationParams: ISettingsV
164
179
  // ensure a valid impressionsMode
165
180
  withDefaults.sync.impressionsMode = validImpressionsMode(log, withDefaults.sync.impressionsMode);
166
181
 
182
+ // ensure a valid user consent value
183
+ // @ts-ignore, modify readonly prop
184
+ withDefaults.userConsent = consent(withDefaults);
185
+
167
186
  return withDefaults;
168
187
  }
@@ -0,0 +1,9 @@
1
+ import { ISettings } from '../../types';
2
+
3
+ // For client-side SDKs, machine IP and Hostname are not captured and sent to Split backend.
4
+ export function validateRuntime(): ISettings['runtime'] {
5
+ return {
6
+ ip: false,
7
+ hostname: false
8
+ };
9
+ }
@@ -6,18 +6,24 @@ import { ISettings } from '../../types';
6
6
  */
7
7
  export interface ISettingsValidationParams {
8
8
  /**
9
- * Object of values to overwrite default settings.
10
- * Version and startup properties are mandatory, because these values are not part of the base setting.
9
+ * Object of values to overwrite base settings.
10
+ * Version and startup properties are required, because they are not defined in the base settings.
11
11
  */
12
12
  defaults: Partial<ISettings> & { version: string } & { startup: ISettings['startup'] },
13
- /** Function to overwrite runtime values (ip and hostname) which are false by default */
14
- runtime?: (settings: ISettings) => ISettings['runtime'],
15
- /** Storage validator */
13
+ /** If true, validates core.key */
14
+ acceptKey?: boolean,
15
+ /** If true, validates core.trafficType */
16
+ acceptTT?: boolean,
17
+ /** Define runtime values (`settings.runtime`) */
18
+ runtime: (settings: ISettings) => ISettings['runtime'],
19
+ /** Storage validator (`settings.storage`) */
16
20
  storage?: (settings: ISettings) => ISettings['storage'],
17
- /** Integrations validator */
21
+ /** Integrations validator (`settings.integrations`) */
18
22
  integrations?: (settings: ISettings) => ISettings['integrations'],
19
23
  /** Logger validator (`settings.debug`) */
20
24
  logger: (settings: ISettings) => ISettings['log'],
21
25
  /** Localhost mode validator (`settings.sync.localhostMode`) */
22
26
  localhost?: (settings: ISettings) => ISettings['sync']['localhostMode'],
27
+ /** User consent validator (`settings.userConsent`) */
28
+ consent: (settings: ISettings) => ISettings['userConsent'],
23
29
  }
@@ -5,7 +5,7 @@ import { SplitIO } from '../types';
5
5
  import { ILogger } from '../logger/types';
6
6
  export interface IDependencyMatcherValue {
7
7
  key: SplitIO.SplitKey;
8
- attributes: SplitIO.Attributes;
8
+ attributes?: SplitIO.Attributes;
9
9
  }
10
10
  export interface IMatcherDto {
11
11
  type: number;
@@ -23,6 +23,6 @@ export interface IEvaluation {
23
23
  export declare type IEvaluationResult = IEvaluation & {
24
24
  treatment: string;
25
25
  };
26
- export declare type ISplitEvaluator = (log: ILogger, key: SplitIO.SplitKey, splitName: string, attributes: SplitIO.Attributes, storage: IStorageSync | IStorageAsync) => MaybeThenable<IEvaluation>;
26
+ export declare type ISplitEvaluator = (log: ILogger, key: SplitIO.SplitKey, splitName: string, attributes: SplitIO.Attributes | undefined, storage: IStorageSync | IStorageAsync) => MaybeThenable<IEvaluation>;
27
27
  export declare type IEvaluator = (key: SplitIO.SplitKey, seed: number, trafficAllocation?: number, trafficAllocationSeed?: number, attributes?: SplitIO.Attributes, splitEvaluator?: ISplitEvaluator) => MaybeThenable<IEvaluation | undefined>;
28
28
  export declare type IMatcher = (...args: any) => MaybeThenable<boolean>;
@@ -4,4 +4,4 @@ import { ILogger } from '../../logger/types';
4
4
  /**
5
5
  * Defines value to be matched (key / attribute).
6
6
  */
7
- export declare function sanitizeValue(log: ILogger, key: string, matcherDto: IMatcherDto, attributes: SplitIO.Attributes): string | number | boolean | (string | number)[] | import("../types").IDependencyMatcherValue | undefined;
7
+ export declare function sanitizeValue(log: ILogger, key: string, matcherDto: IMatcherDto, attributes?: SplitIO.Attributes): string | number | boolean | (string | number)[] | import("../types").IDependencyMatcherValue | undefined;
@@ -4,4 +4,4 @@ import { ILogger } from '../../logger/types';
4
4
  /**
5
5
  * Sanitize matcher value
6
6
  */
7
- export declare function sanitize(log: ILogger, matcherTypeID: number, value: string | number | boolean | Array<string | number> | undefined, dataType: string, attributes: SplitIO.Attributes): string | number | boolean | (string | number)[] | IDependencyMatcherValue | undefined;
7
+ export declare function sanitize(log: ILogger, matcherTypeID: number, value: string | number | boolean | Array<string | number> | undefined, dataType: string, attributes?: SplitIO.Attributes): string | number | boolean | (string | number)[] | IDependencyMatcherValue | undefined;
@@ -1,3 +1,3 @@
1
- import { IIntegrationFactoryParams } from '../types';
1
+ import { IntegrationFactory } from '../types';
2
2
  import { GoogleAnalyticsToSplitOptions } from './types';
3
- export declare function GoogleAnalyticsToSplit(options: GoogleAnalyticsToSplitOptions): (params: IIntegrationFactoryParams) => void;
3
+ export declare function GoogleAnalyticsToSplit(options: GoogleAnalyticsToSplitOptions): IntegrationFactory;
@@ -1,4 +1,3 @@
1
- import { IIntegrationFactoryParams } from '../types';
2
- import { SplitToGa } from './SplitToGa';
1
+ import { IntegrationFactory } from '../types';
3
2
  import { SplitToGoogleAnalyticsOptions } from './types';
4
- export declare function SplitToGoogleAnalytics(options?: SplitToGoogleAnalyticsOptions): (params: IIntegrationFactoryParams) => SplitToGa;
3
+ export declare function SplitToGoogleAnalytics(options?: SplitToGoogleAnalyticsOptions): IntegrationFactory;
@@ -11,3 +11,7 @@ export interface IIntegrationFactoryParams {
11
11
  };
12
12
  settings: ISettings;
13
13
  }
14
+ export declare type IntegrationFactory = {
15
+ readonly type: string;
16
+ (params: IIntegrationFactoryParams): IIntegration | void;
17
+ };
@@ -60,13 +60,15 @@ export declare const STREAMING_RECONNECT = 111;
60
60
  export declare const STREAMING_CONNECTING = 112;
61
61
  export declare const STREAMING_DISABLED = 113;
62
62
  export declare const STREAMING_DISCONNECTING = 114;
63
- export declare const SUBMITTERS_PUSH_FULL_EVENTS_QUEUE = 115;
63
+ export declare const SUBMITTERS_PUSH_FULL_QUEUE = 115;
64
64
  export declare const SUBMITTERS_PUSH = 116;
65
65
  export declare const SYNC_START_POLLING = 117;
66
66
  export declare const SYNC_CONTINUE_POLLING = 118;
67
67
  export declare const SYNC_STOP_POLLING = 119;
68
68
  export declare const EVENTS_TRACKER_SUCCESS = 120;
69
69
  export declare const IMPRESSIONS_TRACKER_SUCCESS = 121;
70
+ export declare const USER_CONSENT_UPDATED = 122;
71
+ export declare const USER_CONSENT_NOT_UPDATED = 123;
70
72
  export declare const ENGINE_VALUE_INVALID = 200;
71
73
  export declare const ENGINE_VALUE_NO_ATTRIBUTES = 201;
72
74
  export declare const CLIENT_NO_LISTENER = 202;
@@ -112,10 +114,11 @@ export declare const ERROR_INVALID_KEY_OBJECT = 317;
112
114
  export declare const ERROR_INVALID = 318;
113
115
  export declare const ERROR_EMPTY = 319;
114
116
  export declare const ERROR_EMPTY_ARRAY = 320;
115
- export declare const ERROR_INVALID_IMPRESSIONS_MODE = 321;
117
+ export declare const ERROR_INVALID_CONFIG_PARAM = 321;
116
118
  export declare const ERROR_HTTP = 322;
117
119
  export declare const ERROR_LOCALHOST_MODULE_REQUIRED = 323;
118
120
  export declare const ERROR_STORAGE_INVALID = 324;
121
+ export declare const ERROR_NOT_BOOLEAN = 325;
119
122
  export declare const LOG_PREFIX_SETTINGS = "settings";
120
123
  export declare const LOG_PREFIX_INSTANTIATION = "Factory instantiation";
121
124
  export declare const LOG_PREFIX_ENGINE = "engine";
@@ -6,8 +6,12 @@ export interface ILoggerOptions {
6
6
  }
7
7
  export interface ILogger {
8
8
  setLogLevel(logLevel: LogLevel): void;
9
+ debug(msg: any): void;
9
10
  debug(msg: string | number, args?: any[]): void;
11
+ info(msg: any): void;
10
12
  info(msg: string | number, args?: any[]): void;
13
+ warn(msg: any): void;
11
14
  warn(msg: string | number, args?: any[]): void;
15
+ error(msg: any): void;
12
16
  error(msg: string | number, args?: any[]): void;
13
17
  }
@@ -8,7 +8,7 @@ export declare function clientAttributesDecoration<TClient extends SplitIO.IClie
8
8
  getTreatmentWithConfig: (maybeKey: SplitIO.SplitKey, maybeSplit: string, maybeAttributes?: SplitIO.Attributes | undefined) => SplitIO.TreatmentWithConfig | SplitIO.AsyncTreatmentWithConfig;
9
9
  getTreatments: (maybeKey: SplitIO.SplitKey, maybeSplits: string[], maybeAttributes?: SplitIO.Attributes | undefined) => SplitIO.Treatments | SplitIO.AsyncTreatments;
10
10
  getTreatmentsWithConfig: (maybeKey: SplitIO.SplitKey, maybeSplits: string[], maybeAttributes?: SplitIO.Attributes | undefined) => SplitIO.TreatmentsWithConfig | SplitIO.AsyncTreatmentsWithConfig;
11
- track: (maybeKey: SplitIO.SplitKey, maybeTT: string, maybeEvent: string, maybeEventValue?: number | undefined, maybeProperties?: SplitIO.Properties | undefined) => import("../dtos/types").MaybeThenable<boolean>;
11
+ track: (maybeKey: SplitIO.SplitKey, maybeTT: string, maybeEvent: string, maybeEventValue?: number | undefined, maybeProperties?: SplitIO.Properties | undefined) => boolean | Promise<boolean>;
12
12
  /**
13
13
  * Add an attribute to client's in memory attributes storage
14
14
  *
@@ -1,8 +1,7 @@
1
1
  import { IReadinessManager } from '../readiness/types';
2
- import { SplitIO } from '../types';
3
- import { ILogger } from '../logger/types';
2
+ import { ISettings, SplitIO } from '../types';
4
3
  /**
5
4
  * Decorator that validates the input before actually executing the client methods.
6
5
  * We should "guard" the client here, while not polluting the "real" implementation of those methods.
7
6
  */
8
- export declare function clientInputValidationDecorator<TClient extends SplitIO.IClient | SplitIO.IAsyncClient>(log: ILogger, client: TClient, readinessManager: IReadinessManager, isStorageSync?: boolean): TClient;
7
+ export declare function clientInputValidationDecorator<TClient extends SplitIO.IClient | SplitIO.IAsyncClient>(settings: ISettings, client: TClient, readinessManager: IReadinessManager): TClient;
@@ -36,7 +36,7 @@ export interface ISdkFactoryParams {
36
36
  settings: ISettings, // Used by BrowserSignalListener
37
37
  storage: IStorageSync | IStorageAsync, // Used by BrowserSignalListener
38
38
  serviceApi: ISplitApi | undefined) => ISignalListener;
39
- impressionListener?: SplitIO.IImpressionListener;
40
39
  integrationsManagerFactory?: (params: IIntegrationFactoryParams) => IIntegrationManager | undefined;
41
40
  impressionsObserverFactory?: () => IImpressionObserver;
41
+ extraProps?: (settings: ISettings, syncManager?: ISyncManager) => object;
42
42
  }
@@ -0,0 +1,6 @@
1
+ import { ISyncManager } from '../sync/types';
2
+ import { ISettings } from '../types';
3
+ export declare function userConsentProps(settings: ISettings, syncManager?: ISyncManager): {
4
+ setUserConsent(consent: unknown): boolean;
5
+ getUserConsent(): import("../types").ConsentStatus | undefined;
6
+ };
@@ -8,6 +8,8 @@ export declare class KeyBuilderCS extends KeyBuilder {
8
8
  */
9
9
  buildSegmentNameKey(segmentName: string): string;
10
10
  extractSegmentName(builtSegmentKeyName: string): string | undefined;
11
+ buildOldSegmentNameKey(segmentName: string): string;
12
+ extractOldSegmentKey(builtSegmentKeyName: string): string | undefined;
11
13
  buildLastUpdatedKey(): string;
12
14
  isSplitsCacheKey(key: string): boolean;
13
15
  buildSplitsFilterQueryKey(): string;
@@ -1,7 +1,16 @@
1
1
  import { IImpressionsCacheSync } from '../types';
2
2
  import { ImpressionDTO } from '../../types';
3
3
  export declare class ImpressionsCacheInMemory implements IImpressionsCacheSync {
4
+ private onFullQueue?;
5
+ private readonly maxQueue;
4
6
  private queue;
7
+ /**
8
+ *
9
+ * @param impressionsQueueSize number of queued impressions to call onFullQueueCb.
10
+ * Default value is 0, that means no maximum value, in case we want to avoid this being triggered.
11
+ */
12
+ constructor(impressionsQueueSize?: number);
13
+ setOnFullQueueCb(cb: () => void): void;
5
14
  /**
6
15
  * Store impressions in sequential order
7
16
  */
@@ -20,5 +20,5 @@ export declare class RedisAdapter extends ioredis {
20
20
  /**
21
21
  * Parses the options into what we care about.
22
22
  */
23
- static _defineOptions({ connectionTimeout, operationTimeout, url, host, port, db, pass }: Record<string, any>): object;
23
+ static _defineOptions({ connectionTimeout, operationTimeout, url, host, port, db, pass, tls }: Record<string, any>): object;
24
24
  }
@@ -269,6 +269,7 @@ export interface IRecorderCacheProducerSync<T> {
269
269
  }
270
270
  export interface IImpressionsCacheSync extends IImpressionsCacheBase, IRecorderCacheProducerSync<ImpressionDTO[]> {
271
271
  track(data: ImpressionDTO[]): void;
272
+ setOnFullQueueCb(cb: () => void): void;
272
273
  }
273
274
  export interface IEventsCacheSync extends IEventsCacheBase, IRecorderCacheProducerSync<SplitIO.EventData[]> {
274
275
  track(data: SplitIO.EventData, size?: number): boolean;
@@ -335,6 +336,7 @@ export declare type IStorageAsync = IStorageBase<ISplitsCacheAsync, ISegmentsCac
335
336
  export declare type DataLoader = (storage: IStorageSync, matchingKey: string) => void;
336
337
  export interface IStorageFactoryParams {
337
338
  log: ILogger;
339
+ impressionsQueueSize?: number;
338
340
  eventsQueueSize?: number;
339
341
  optimize?: boolean;
340
342
  matchingKey?: string;
@@ -345,7 +347,7 @@ export interface IStorageFactoryParams {
345
347
  }
346
348
  export declare type StorageType = 'MEMORY' | 'LOCALSTORAGE' | 'REDIS' | 'PLUGGABLE';
347
349
  export declare type IStorageSyncFactory = {
348
- type: StorageType;
350
+ readonly type: StorageType;
349
351
  (params: IStorageFactoryParams): IStorageSync;
350
352
  };
351
353
  export declare type IStorageAsyncFactory = {
@@ -3,6 +3,7 @@ import { IPlatform } from '../sdkFactory/types';
3
3
  import { ISplitApi } from '../services/types';
4
4
  import { IStorageSync } from '../storages/types';
5
5
  import { ISettings } from '../types';
6
+ import { IPollingManager } from './polling/types';
6
7
  import { IPushManager } from './streaming/types';
7
8
  export interface ITask<Input extends any[] = []> {
8
9
  /**
@@ -39,6 +40,8 @@ export interface ITimeTracker {
39
40
  export interface ISyncManager extends ITask {
40
41
  flush(): Promise<any>;
41
42
  pushManager?: IPushManager;
43
+ pollingManager?: IPollingManager;
44
+ submitter?: ISyncTask;
42
45
  }
43
46
  export interface ISyncManagerCS extends ISyncManager {
44
47
  shared(matchingKey: string, readinessManager: IReadinessManager, storage: IStorageSync): ISyncManager | undefined;
@@ -1,10 +1,10 @@
1
1
  import { IEventsCacheBase } from '../storages/types';
2
2
  import { IEventsHandler, IEventTracker } from './types';
3
- import { ILogger } from '../logger/types';
3
+ import { ISettings } from '../types';
4
4
  /**
5
5
  * Event tracker stores events in cache and pass them to the integrations manager if provided.
6
6
  *
7
7
  * @param eventsCache cache to save events
8
8
  * @param integrationsManager optional event handler used for integrations
9
9
  */
10
- export declare function eventTrackerFactory(log: ILogger, eventsCache: IEventsCacheBase, integrationsManager?: IEventsHandler): IEventTracker;
10
+ export declare function eventTrackerFactory(settings: ISettings, eventsCache: IEventsCacheBase, integrationsManager?: IEventsHandler): IEventTracker;
@@ -7,3 +7,7 @@ export declare function shouldAddPt(settings: ISettings): boolean;
7
7
  * Checks if it should dedupe impressions or not.
8
8
  */
9
9
  export declare function shouldBeOptimized(settings: ISettings): boolean;
10
+ /**
11
+ * Storage is async if mode is consumer or partial consumer
12
+ */
13
+ export declare function isStorageSync(settings: ISettings): boolean;
@@ -1,8 +1,7 @@
1
1
  import { IImpressionCountsCacheSync, IImpressionsCacheBase } from '../storages/types';
2
2
  import { IImpressionsHandler, IImpressionsTracker } from './types';
3
- import { SplitIO, ISettings } from '../types';
3
+ import { ISettings } from '../types';
4
4
  import { IImpressionObserver } from './impressionObserver/types';
5
- import { ILogger } from '../logger/types';
6
5
  /**
7
6
  * Impressions tracker stores impressions in cache and pass them to the listener and integrations manager if provided.
8
7
  *
@@ -13,4 +12,4 @@ import { ILogger } from '../logger/types';
13
12
  * @param observer optional impression observer. If provided, previous time (pt property) is included in impression instances
14
13
  * @param countsCache optional cache to save impressions count. If provided, impressions will be deduped (OPTIMIZED mode)
15
14
  */
16
- export declare function impressionsTrackerFactory(log: ILogger, impressionsCache: IImpressionsCacheBase, { runtime: { ip, hostname }, version }: Pick<ISettings, 'version' | 'runtime'>, impressionListener?: SplitIO.IImpressionListener, integrationsManager?: IImpressionsHandler, observer?: IImpressionObserver, countsCache?: IImpressionCountsCacheSync): IImpressionsTracker;
15
+ export declare function impressionsTrackerFactory(settings: ISettings, impressionsCache: IImpressionsCacheBase, integrationsManager?: IImpressionsHandler, observer?: IImpressionObserver, countsCache?: IImpressionCountsCacheSync): IImpressionsTracker;