@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 +10 -0
- package/dist/npm/index.d.cts +12 -1
- package/dist/npm/index.d.mts +12 -1
- package/dist/npm/legacy/bundled/cjs/index.cjs +301 -278
- package/dist/npm/legacy/bundled/esm/index.mjs +301 -278
- package/dist/npm/legacy/bundled/umd/index.js +301 -278
- package/dist/npm/legacy/cjs/index.cjs +301 -278
- package/dist/npm/legacy/content-script/cjs/index.cjs +301 -278
- package/dist/npm/legacy/content-script/esm/index.mjs +301 -278
- package/dist/npm/legacy/content-script/umd/index.js +301 -278
- package/dist/npm/legacy/esm/index.mjs +301 -278
- package/dist/npm/legacy/umd/index.js +301 -278
- package/dist/npm/modern/bundled/cjs/index.cjs +73 -27
- package/dist/npm/modern/bundled/esm/index.mjs +73 -27
- package/dist/npm/modern/bundled/umd/index.js +73 -27
- package/dist/npm/modern/cjs/index.cjs +14 -15
- package/dist/npm/modern/content-script/cjs/index.cjs +73 -27
- package/dist/npm/modern/content-script/esm/index.mjs +73 -27
- package/dist/npm/modern/content-script/umd/index.js +73 -27
- package/dist/npm/modern/esm/index.mjs +14 -15
- package/dist/npm/modern/umd/index.js +14 -15
- package/package.json +1 -1
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
|
package/dist/npm/index.d.cts
CHANGED
@@ -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;
|
package/dist/npm/index.d.mts
CHANGED
@@ -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;
|