rudder-sdk-js 2.24.0 → 2.26.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 +15 -0
- package/index.d.ts +2 -0
- package/index.es.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/service-worker/index.es.js +1 -1
- package/service-worker/index.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,21 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
4
|
|
5
|
+
## [2.26.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.25.0...v2.26.0) (2023-03-02)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* onetrust for cloud mode events ([#902](https://github.com/rudderlabs/rudder-sdk-js/issues/902)) ([aa67af8](https://github.com/rudderlabs/rudder-sdk-js/commit/aa67af83bc3292e6e877c66bf0778e0e609911c0))
|
10
|
+
* onLoaded callback option ([#916](https://github.com/rudderlabs/rudder-sdk-js/issues/916)) ([e7e3a2b](https://github.com/rudderlabs/rudder-sdk-js/commit/e7e3a2b6f20cc152a0bb90e82f6dfb434abbe554))
|
11
|
+
* user agent client hint info added in context ([#918](https://github.com/rudderlabs/rudder-sdk-js/issues/918)) ([82a71ae](https://github.com/rudderlabs/rudder-sdk-js/commit/82a71ae21a5593abc49600af8b83f6649caac007))
|
12
|
+
|
13
|
+
## [2.25.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.24.0...v2.25.0) (2023-02-20)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **ga4:** add sent_to parameter in gtag event call ([#907](https://github.com/rudderlabs/rudder-sdk-js/issues/907)) ([939f4b2](https://github.com/rudderlabs/rudder-sdk-js/commit/939f4b228e7a53ac39f3ec8d8ad08ea8a776d543))
|
18
|
+
|
19
|
+
|
5
20
|
## [2.24.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.23.0...v2.24.0) (2023-02-08)
|
6
21
|
|
7
22
|
### Bug Fixes
|
package/index.d.ts
CHANGED
@@ -102,6 +102,8 @@ declare module 'rudder-sdk-js' {
|
|
102
102
|
// Controls whether the SDK should polyfill unsupported browser API's if they are detected as missing
|
103
103
|
// Defaults to true
|
104
104
|
polyfillIfRequired?: boolean;
|
105
|
+
uaChTrackLevel?: 'none' | 'default' | 'full';
|
106
|
+
onLoaded?: (any) => void;
|
105
107
|
}
|
106
108
|
|
107
109
|
/**
|