@rudderstack/analytics-js 3.18.2 → 3.19.0-beta.pr.2278.cd218f2

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 CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [3.19.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.18.2...@rudderstack/analytics-js@3.19.0) (2025-06-03)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@rudderstack/analytics-js-plugins` updated to version `3.9.0`
10
+
11
+ ### Features
12
+
13
+ * retry delivery failures in beacon plugin when page is unloaded ([#2269](https://github.com/rudderlabs/rudder-sdk-js/issues/2269)) ([cec81f3](https://github.com/rudderlabs/rudder-sdk-js/commit/cec81f3d2aca443f6d2c209941dd28fffd65888c))
14
+
5
15
  ## [3.18.2](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.18.1...@rudderstack/analytics-js@3.18.2) (2025-05-26)
6
16
 
7
17
  ### Dependency Updates
@@ -280,6 +280,17 @@ type AutoTrackOptions = {
280
280
  options?: ApiOptions;
281
281
  pageLifecycle?: PageLifecycleOptions;
282
282
  };
283
+ /**
284
+ * Represents the source configuration override options for destinations
285
+ */
286
+ type SourceConfigurationOverrideDestination = {
287
+ id: string;
288
+ enabled?: boolean;
289
+ config?: Record<string, any>;
290
+ };
291
+ type SourceConfigurationOverride = {
292
+ destinations: SourceConfigurationOverrideDestination[];
293
+ };
283
294
  /**
284
295
  * Represents the options parameter in the load API
285
296
  */
@@ -327,6 +338,7 @@ type LoadOptions = {
327
338
  useServerSideCookies?: boolean;
328
339
  dataServiceEndpoint?: string;
329
340
  autoTrack?: AutoTrackOptions;
341
+ sourceConfigurationOverride?: SourceConfigurationOverride;
330
342
  };
331
343
 
332
344
  type Address = {
@@ -877,7 +889,6 @@ type ConfigResponseDestinationItem = {
877
889
  propagateEventsUntransformedOnError: boolean;
878
890
  config: DestinationConfig;
879
891
  updatedAt: string;
880
- deleted: boolean;
881
892
  destinationDefinition: DestinationDefinition;
882
893
  enabled: boolean;
883
894
  id: string;
@@ -280,6 +280,17 @@ type AutoTrackOptions = {
280
280
  options?: ApiOptions;
281
281
  pageLifecycle?: PageLifecycleOptions;
282
282
  };
283
+ /**
284
+ * Represents the source configuration override options for destinations
285
+ */
286
+ type SourceConfigurationOverrideDestination = {
287
+ id: string;
288
+ enabled?: boolean;
289
+ config?: Record<string, any>;
290
+ };
291
+ type SourceConfigurationOverride = {
292
+ destinations: SourceConfigurationOverrideDestination[];
293
+ };
283
294
  /**
284
295
  * Represents the options parameter in the load API
285
296
  */
@@ -327,6 +338,7 @@ type LoadOptions = {
327
338
  useServerSideCookies?: boolean;
328
339
  dataServiceEndpoint?: string;
329
340
  autoTrack?: AutoTrackOptions;
341
+ sourceConfigurationOverride?: SourceConfigurationOverride;
330
342
  };
331
343
 
332
344
  type Address = {
@@ -877,7 +889,6 @@ type ConfigResponseDestinationItem = {
877
889
  propagateEventsUntransformedOnError: boolean;
878
890
  config: DestinationConfig;
879
891
  updatedAt: string;
880
- deleted: boolean;
881
892
  destinationDefinition: DestinationDefinition;
882
893
  enabled: boolean;
883
894
  id: string;