launchdarkly-js-sdk-common 3.6.0 → 3.7.0
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/CHANGELOG.md +7 -0
- package/dist/ldclient-common.cjs.js +1 -1
- package/dist/ldclient-common.cjs.js.map +1 -1
- package/dist/ldclient-common.es.js +1 -1
- package/dist/ldclient-common.es.js.map +1 -1
- package/dist/ldclient-common.min.js +1 -1
- package/dist/ldclient-common.min.js.map +1 -1
- package/package.json +1 -1
- package/typings.d.ts +6 -3
package/package.json
CHANGED
package/typings.d.ts
CHANGED
|
@@ -191,10 +191,13 @@ declare module 'launchdarkly-js-sdk-common' {
|
|
|
191
191
|
inlineUsersInEvents?: boolean;
|
|
192
192
|
|
|
193
193
|
/**
|
|
194
|
-
*
|
|
195
|
-
* evaluated with the same value within the last five minutes.
|
|
194
|
+
* This option is deprecated, and setting it has no effect.
|
|
196
195
|
*
|
|
197
|
-
*
|
|
196
|
+
* The behavior is now to allow frequent duplicate events.
|
|
197
|
+
*
|
|
198
|
+
* This is not a problem because most events will be summarized, and
|
|
199
|
+
* events which are not summarized are important to the operation of features such as
|
|
200
|
+
* experimentation.
|
|
198
201
|
*/
|
|
199
202
|
allowFrequentDuplicateEvents?: boolean;
|
|
200
203
|
|