@kameleoon/react-sdk 10.16.0 → 10.16.1

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/dist/types.d.ts CHANGED
@@ -1,6 +1,7 @@
1
- import { SDKParameters as CoreSDKParameters, ExternalsType as CoreExternalsType, IExternalPRNG, KameleoonClient } from '@kameleoon/javascript-sdk';
1
+ import { SDKParameters as CoreSDKParameters, ExternalsType as CoreExternalsType, IExternalPRNG, KameleoonClient, IPlatformAnalyzer } from '@kameleoon/javascript-sdk';
2
2
  export type ExternalsType = CoreExternalsType & {
3
3
  prng?: IExternalPRNG;
4
+ platformAnalyzer?: IPlatformAnalyzer;
4
5
  };
5
6
  /**
6
7
  * @param {IExternalStorage | undefined} storage - external storage implementation
@@ -9,6 +10,7 @@ export type ExternalsType = CoreExternalsType & {
9
10
  * @param {IExternalRequester | undefined} requester - external requester implementation
10
11
  * @param {IExternalPRNG | undefined} prng - external PRNG implementation
11
12
  * @param {IExternalLogger | undefined} logger - external logger implementation
13
+ * @param {IPlatformAnalyzer | undefined} platformAnalyzer - external platform analyzer implementation
12
14
  * @param {boolean | undefined} stubMode - When set to true, the client will operate in stub mode and perform no operations. In this mode, all method calls become no-ops, ensuring that no external actions or side effects occur.
13
15
  * */
14
16
  export type SDKParameters = Omit<CoreSDKParameters, '_internals'> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kameleoon/react-sdk",
3
- "version": "10.16.0",
3
+ "version": "10.16.1",
4
4
  "description": "Kameleoon React SDK",
5
5
  "files": [
6
6
  "dist"
@@ -43,7 +43,7 @@
43
43
  ],
44
44
  "license": "ISC",
45
45
  "dependencies": {
46
- "@kameleoon/javascript-sdk": "4.14.2"
46
+ "@kameleoon/javascript-sdk": "4.14.3"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"