@ninetailed/experience.js-react 7.6.0-beta.6 → 7.6.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/index.cjs.js CHANGED
@@ -35,7 +35,7 @@ const NinetailedProvider = props => {
35
35
  onInitProfileId,
36
36
  componentViewTrackingThreshold,
37
37
  storageImpl,
38
- useClientSideEvaluation
38
+ useSDKEvaluation
39
39
  } = props;
40
40
  return new experience_js.Ninetailed({
41
41
  clientId,
@@ -52,7 +52,7 @@ const NinetailedProvider = props => {
52
52
  onInitProfileId,
53
53
  componentViewTrackingThreshold,
54
54
  storageImpl,
55
- useClientSideEvaluation
55
+ useSDKEvaluation
56
56
  });
57
57
  }, []);
58
58
  const {
package/index.esm.js CHANGED
@@ -27,7 +27,7 @@ const NinetailedProvider = props => {
27
27
  onInitProfileId,
28
28
  componentViewTrackingThreshold,
29
29
  storageImpl,
30
- useClientSideEvaluation
30
+ useSDKEvaluation
31
31
  } = props;
32
32
  return new Ninetailed({
33
33
  clientId,
@@ -44,7 +44,7 @@ const NinetailedProvider = props => {
44
44
  onInitProfileId,
45
45
  componentViewTrackingThreshold,
46
46
  storageImpl,
47
- useClientSideEvaluation
47
+ useSDKEvaluation
48
48
  });
49
49
  }, []);
50
50
  const {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@ninetailed/experience.js-react",
3
- "version": "7.6.0-beta.6",
3
+ "version": "7.6.0",
4
4
  "description": "Ninetailed SDK for React",
5
5
  "dependencies": {
6
- "@ninetailed/experience.js": "7.6.0-beta.6",
7
- "@ninetailed/experience.js-shared": "7.6.0-beta.6",
8
- "@ninetailed/experience.js-plugin-analytics": "7.6.0-beta.6",
6
+ "@ninetailed/experience.js": "7.6.0",
7
+ "@ninetailed/experience.js-shared": "7.6.0",
8
+ "@ninetailed/experience.js-plugin-analytics": "7.6.0",
9
9
  "radash": "10.9.0",
10
10
  "react-intersection-observer": "8.34.0",
11
11
  "react-is": "18.2.0",
@@ -16,7 +16,7 @@ export type NinetailedProviderInstantiationProps = {
16
16
  buildClientContext?: () => NinetailedRequestContext;
17
17
  onInitProfileId?: OnInitProfileId;
18
18
  storageImpl?: Storage;
19
- useClientSideEvaluation?: boolean;
19
+ useSDKEvaluation?: boolean;
20
20
  };
21
21
  export type NinetailedProviderProps = NinetailedProviderInstantiationProps | {
22
22
  ninetailed: Ninetailed;