rudder-sdk-js 2.25.0 → 2.26.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -1
- 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,8 +2,15 @@
|
|
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.
|
5
|
+
## [2.26.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.25.0...v2.26.0) (2023-03-02)
|
6
|
+
|
7
|
+
### Features
|
6
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)
|
7
14
|
|
8
15
|
### Features
|
9
16
|
|
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
|
/**
|