@kameleoon/javascript-sdk-core 5.14.4 → 5.14.5

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.
@@ -9,7 +9,8 @@ export declare class Tracker implements ITracker {
9
9
  private bodyProvider;
10
10
  private intervalId;
11
11
  private trackingStorage;
12
- constructor({ dataManager, trackingStorage, variationConfiguration, trackingInterval, requester, prng, }: TrackerParametersType);
12
+ private clientConfiguration;
13
+ constructor({ dataManager, trackingStorage, variationConfiguration, trackingInterval, requester, prng, clientConfiguration, }: TrackerParametersType);
13
14
  scheduleVisitor(visitorCode: string, isConsentProvided: boolean): void;
14
15
  private checkIsIdentifier;
15
16
  private getUserAgent;
@@ -5,6 +5,7 @@ import { IExternalPRNG } from '../utilities';
5
5
  import { VariationConfiguration } from '../variationConfiguration';
6
6
  import { BaseVariationDataType } from '../variationConfiguration/types';
7
7
  import { StaticData } from '../kameleoonData/staticData';
8
+ import { ClientConfiguration } from '../clientConfiguration';
8
9
  export type PendingDataType = {
9
10
  [visitorCode: string]: {
10
11
  visitorData: (KameleoonDataType | StaticData)[];
@@ -24,6 +25,7 @@ export type TrackerParametersType = {
24
25
  variationConfiguration: VariationConfiguration;
25
26
  requester: Requester;
26
27
  prng: IExternalPRNG;
28
+ clientConfiguration: ClientConfiguration;
27
29
  };
28
30
  export type AddDataParametersType = {
29
31
  visitorCode: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kameleoon/javascript-sdk-core",
3
- "version": "5.14.4",
3
+ "version": "5.14.5",
4
4
  "description": "Kameleoon JS SDK Core",
5
5
  "main": "dist/javascript-sdk-core.cjs.js",
6
6
  "module": "dist/javascript-sdk-core.es.js",