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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "launchdarkly-js-sdk-common",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "LaunchDarkly SDK for JavaScript - common code",
5
5
  "author": "LaunchDarkly <team@launchdarkly.com>",
6
6
  "license": "Apache-2.0",
package/typings.d.ts CHANGED
@@ -191,10 +191,13 @@ declare module 'launchdarkly-js-sdk-common' {
191
191
  inlineUsersInEvents?: boolean;
192
192
 
193
193
  /**
194
- * Whether or not to send an analytics event for a flag evaluation even if the same flag was
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
- * By default, this is false (duplicate events within five minutes will be dropped).
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