@flagship.io/react-sdk 2.2.0-beta.5 → 2.2.0-beta.6
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.
- package/dist/es/FlagshipContext.js +8 -2
- package/dist/esm/FlagshipContext.js +8 -2
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/FlagshipContext.d.ts +4 -4
- package/dist/types/FlagshipHooks.d.ts +6 -2
- package/package.json +2 -2
|
@@ -38,7 +38,10 @@ export const FlagshipProvider = ({
|
|
|
38
38
|
initialModifications,
|
|
39
39
|
synchronizeOnBucketingUpdated,
|
|
40
40
|
activateDeduplicationTime,
|
|
41
|
-
hitDeduplicationTime
|
|
41
|
+
hitDeduplicationTime,
|
|
42
|
+
visitorCacheImplementation,
|
|
43
|
+
hitCacheImplementation,
|
|
44
|
+
disableCache
|
|
42
45
|
}) => {
|
|
43
46
|
let modifications = new Map();
|
|
44
47
|
|
|
@@ -209,7 +212,10 @@ export const FlagshipProvider = ({
|
|
|
209
212
|
onBucketingUpdated: onBucketingLastModified,
|
|
210
213
|
initialBucketing,
|
|
211
214
|
activateDeduplicationTime,
|
|
212
|
-
hitDeduplicationTime
|
|
215
|
+
hitDeduplicationTime,
|
|
216
|
+
visitorCacheImplementation,
|
|
217
|
+
hitCacheImplementation,
|
|
218
|
+
disableCache
|
|
213
219
|
});
|
|
214
220
|
};
|
|
215
221
|
|
|
@@ -55,7 +55,10 @@ export var FlagshipProvider = function FlagshipProvider(_ref) {
|
|
|
55
55
|
initialModifications = _ref.initialModifications,
|
|
56
56
|
synchronizeOnBucketingUpdated = _ref.synchronizeOnBucketingUpdated,
|
|
57
57
|
activateDeduplicationTime = _ref.activateDeduplicationTime,
|
|
58
|
-
hitDeduplicationTime = _ref.hitDeduplicationTime
|
|
58
|
+
hitDeduplicationTime = _ref.hitDeduplicationTime,
|
|
59
|
+
visitorCacheImplementation = _ref.visitorCacheImplementation,
|
|
60
|
+
hitCacheImplementation = _ref.hitCacheImplementation,
|
|
61
|
+
disableCache = _ref.disableCache;
|
|
59
62
|
var modifications = new Map();
|
|
60
63
|
|
|
61
64
|
if (initialModifications) {
|
|
@@ -231,7 +234,10 @@ export var FlagshipProvider = function FlagshipProvider(_ref) {
|
|
|
231
234
|
onBucketingUpdated: onBucketingLastModified,
|
|
232
235
|
initialBucketing: initialBucketing,
|
|
233
236
|
activateDeduplicationTime: activateDeduplicationTime,
|
|
234
|
-
hitDeduplicationTime: hitDeduplicationTime
|
|
237
|
+
hitDeduplicationTime: hitDeduplicationTime,
|
|
238
|
+
visitorCacheImplementation: visitorCacheImplementation,
|
|
239
|
+
hitCacheImplementation: hitCacheImplementation,
|
|
240
|
+
disableCache: disableCache
|
|
235
241
|
});
|
|
236
242
|
};
|
|
237
243
|
|