@statsig/statsig-node-core 0.8.8-beta.2509130225 → 0.8.9-beta.2509161804

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@statsig/statsig-node-core",
3
- "version": "0.8.8-beta.2509130225",
3
+ "version": "0.8.9-beta.2509161804",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "jest --colors"
@@ -53,13 +53,13 @@
53
53
  ]
54
54
  },
55
55
  "optionalDependencies": {
56
- "@statsig/statsig-node-core-linux-x64-musl": "0.8.8-beta.2509130225",
57
- "@statsig/statsig-node-core-linux-x64-gnu": "0.8.8-beta.2509130225",
58
- "@statsig/statsig-node-core-win32-x64-msvc": "0.8.8-beta.2509130225",
59
- "@statsig/statsig-node-core-darwin-x64": "0.8.8-beta.2509130225",
60
- "@statsig/statsig-node-core-win32-ia32-msvc": "0.8.8-beta.2509130225",
61
- "@statsig/statsig-node-core-linux-arm64-musl": "0.8.8-beta.2509130225",
62
- "@statsig/statsig-node-core-linux-arm64-gnu": "0.8.8-beta.2509130225",
63
- "@statsig/statsig-node-core-darwin-arm64": "0.8.8-beta.2509130225"
56
+ "@statsig/statsig-node-core-linux-x64-musl": "0.8.9-beta.2509161804",
57
+ "@statsig/statsig-node-core-linux-x64-gnu": "0.8.9-beta.2509161804",
58
+ "@statsig/statsig-node-core-win32-x64-msvc": "0.8.9-beta.2509161804",
59
+ "@statsig/statsig-node-core-darwin-x64": "0.8.9-beta.2509161804",
60
+ "@statsig/statsig-node-core-win32-ia32-msvc": "0.8.9-beta.2509161804",
61
+ "@statsig/statsig-node-core-linux-arm64-musl": "0.8.9-beta.2509161804",
62
+ "@statsig/statsig-node-core-linux-arm64-gnu": "0.8.9-beta.2509161804",
63
+ "@statsig/statsig-node-core-darwin-arm64": "0.8.9-beta.2509161804"
64
64
  }
65
65
  }
@@ -5,11 +5,13 @@ export declare class DynamicConfig {
5
5
  value: Record<string, any>
6
6
  ruleID: string
7
7
  idType: string
8
+ details: EvaluationDetails
8
9
  getValue(param_name: string, fallback: boolean | number | string | object | Array<any> | null): any
9
10
  getRuleId(): string
10
11
  getIdType(): string
11
12
  getEvaluationDetails(): EvaluationDetails
12
13
  getSecondaryExposures(): Array<SecondaryExposure> | null
14
+ toJSON(): Record<string, any>
13
15
  }
14
16
 
15
17
  export declare class Experiment {
@@ -18,12 +20,14 @@ export declare class Experiment {
18
20
  ruleID: string
19
21
  idType: string
20
22
  groupName?: string
23
+ details: EvaluationDetails
21
24
  getValue(param_name: string, fallback: boolean | number | string | object | Array<any> | null): any
22
25
  getRuleId(): string
23
26
  getIdType(): string
24
27
  getGroupName(): string | null
25
28
  getEvaluationDetails(): EvaluationDetails
26
29
  getSecondaryExposures(): Array<SecondaryExposure> | null
30
+ toJSON(): Record<string, any>
27
31
  }
28
32
 
29
33
  export declare class Layer {
@@ -32,11 +36,13 @@ export declare class Layer {
32
36
  groupName?: string
33
37
  allocatedExperimentName?: string
34
38
  value: Record<string, any>
39
+ details: EvaluationDetails
35
40
  getValue(param_name: string, fallback: boolean | number | string | object | Array<any> | null): any
36
41
  getRuleId(): string
37
42
  getGroupName(): string | null
38
43
  getEvaluationDetails(): EvaluationDetails
39
44
  getSecondaryExposures(): Array<SecondaryExposure> | null
45
+ toJSON(): Record<string, any>
40
46
  }
41
47
 
42
48
  export declare class ParameterStore {