@rudderstack/analytics-js 3.7.18 → 3.8.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 +24 -0
- package/README.md +1 -0
- package/dist/npm/index.d.cts +2 -2
- package/dist/npm/index.d.mts +2 -2
- package/dist/npm/legacy/bundled/cjs/index.cjs +178 -108
- package/dist/npm/legacy/bundled/esm/index.mjs +178 -108
- package/dist/npm/legacy/bundled/umd/index.js +178 -108
- package/dist/npm/legacy/cjs/index.cjs +178 -108
- package/dist/npm/legacy/content-script/cjs/index.cjs +178 -108
- package/dist/npm/legacy/content-script/esm/index.mjs +178 -108
- package/dist/npm/legacy/content-script/umd/index.js +178 -108
- package/dist/npm/legacy/esm/index.mjs +178 -108
- package/dist/npm/legacy/umd/index.js +178 -108
- package/dist/npm/modern/bundled/cjs/index.cjs +145 -108
- package/dist/npm/modern/bundled/esm/index.mjs +145 -108
- package/dist/npm/modern/bundled/umd/index.js +145 -108
- package/dist/npm/modern/cjs/index.cjs +18 -18
- package/dist/npm/modern/content-script/cjs/index.cjs +145 -108
- package/dist/npm/modern/content-script/esm/index.mjs +145 -108
- package/dist/npm/modern/content-script/umd/index.js +145 -108
- package/dist/npm/modern/esm/index.mjs +18 -18
- package/dist/npm/modern/umd/index.js +18 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,30 @@
|
|
2
2
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
4
4
|
|
5
|
+
## [3.8.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.7.19...@rudderstack/analytics-js@3.8.0) (2024-10-21)
|
6
|
+
|
7
|
+
### Dependency Updates
|
8
|
+
|
9
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.3.12`
|
10
|
+
* `@rudderstack/analytics-js-common` updated to version `3.10.0`
|
11
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.5.0`
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* iubenda consent manager plugin ([#1809](https://github.com/rudderlabs/rudder-sdk-js/issues/1809)) ([7ea300c](https://github.com/rudderlabs/rudder-sdk-js/commit/7ea300c61ead9cc094c3f1985e0ef3165b0fcb59))
|
16
|
+
|
17
|
+
## [3.7.19](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.7.18...@rudderstack/analytics-js@3.7.19) (2024-10-18)
|
18
|
+
|
19
|
+
### Dependency Updates
|
20
|
+
|
21
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.3.11`
|
22
|
+
* `@rudderstack/analytics-js-common` updated to version `3.9.5`
|
23
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.4.19`
|
24
|
+
|
25
|
+
### Bug Fixes
|
26
|
+
|
27
|
+
* harmless change in the core sdk package ([5c34b04](https://github.com/rudderlabs/rudder-sdk-js/commit/5c34b0453041a0dc1b8a7dc55eb0c884d16d0598))
|
28
|
+
|
5
29
|
## [3.7.18](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.7.17...@rudderstack/analytics-js@3.7.18) (2024-10-17)
|
6
30
|
|
7
31
|
### Dependency Updates
|
package/README.md
CHANGED
package/dist/npm/index.d.cts
CHANGED
@@ -125,9 +125,9 @@ interface IPluginsManager {
|
|
125
125
|
invokeSingle<T = any>(extPoint?: string, ...args: any[]): Nullable<T>;
|
126
126
|
register(plugins: ExtensionPlugin[]): void;
|
127
127
|
}
|
128
|
-
type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
|
128
|
+
type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'IubendaConsentManager' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
|
129
129
|
|
130
|
-
type ConsentManagementProvider = 'oneTrust' | 'ketch' | 'custom';
|
130
|
+
type ConsentManagementProvider = 'iubenda' | 'oneTrust' | 'ketch' | 'custom';
|
131
131
|
type Consents = string[];
|
132
132
|
type ConsentManagementOptions = {
|
133
133
|
enabled?: boolean;
|
package/dist/npm/index.d.mts
CHANGED
@@ -125,9 +125,9 @@ interface IPluginsManager {
|
|
125
125
|
invokeSingle<T = any>(extPoint?: string, ...args: any[]): Nullable<T>;
|
126
126
|
register(plugins: ExtensionPlugin[]): void;
|
127
127
|
}
|
128
|
-
type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
|
128
|
+
type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'IubendaConsentManager' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
|
129
129
|
|
130
|
-
type ConsentManagementProvider = 'oneTrust' | 'ketch' | 'custom';
|
130
|
+
type ConsentManagementProvider = 'iubenda' | 'oneTrust' | 'ketch' | 'custom';
|
131
131
|
type Consents = string[];
|
132
132
|
type ConsentManagementOptions = {
|
133
133
|
enabled?: boolean;
|