@statsig/statsig-node-core 0.10.3-beta.2510220237 → 0.10.3-beta.2510240234

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.10.3-beta.2510220237",
3
+ "version": "0.10.3-beta.2510240234",
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.10.3-beta.2510220237",
57
- "@statsig/statsig-node-core-linux-x64-gnu": "0.10.3-beta.2510220237",
58
- "@statsig/statsig-node-core-win32-x64-msvc": "0.10.3-beta.2510220237",
59
- "@statsig/statsig-node-core-darwin-x64": "0.10.3-beta.2510220237",
60
- "@statsig/statsig-node-core-win32-ia32-msvc": "0.10.3-beta.2510220237",
61
- "@statsig/statsig-node-core-linux-arm64-musl": "0.10.3-beta.2510220237",
62
- "@statsig/statsig-node-core-linux-arm64-gnu": "0.10.3-beta.2510220237",
63
- "@statsig/statsig-node-core-darwin-arm64": "0.10.3-beta.2510220237"
56
+ "@statsig/statsig-node-core-linux-x64-musl": "0.10.3-beta.2510240234",
57
+ "@statsig/statsig-node-core-linux-x64-gnu": "0.10.3-beta.2510240234",
58
+ "@statsig/statsig-node-core-win32-x64-msvc": "0.10.3-beta.2510240234",
59
+ "@statsig/statsig-node-core-darwin-x64": "0.10.3-beta.2510240234",
60
+ "@statsig/statsig-node-core-win32-ia32-msvc": "0.10.3-beta.2510240234",
61
+ "@statsig/statsig-node-core-linux-arm64-musl": "0.10.3-beta.2510240234",
62
+ "@statsig/statsig-node-core-linux-arm64-gnu": "0.10.3-beta.2510240234",
63
+ "@statsig/statsig-node-core-darwin-arm64": "0.10.3-beta.2510240234"
64
64
  }
65
65
  }
@@ -55,8 +55,8 @@ export declare class ParameterStore {
55
55
  }
56
56
 
57
57
  export declare class StatsigNapiInternal {
58
- subscribe(eventName: '*' | 'gate_evaluated' | 'dynamic_config_evaluated' | 'experiment_evaluated' | 'layer_evaluated', callback: (event: any) => void): string
59
- unsubscribe(eventName: '*' | 'gate_evaluated' | 'dynamic_config_evaluated' | 'experiment_evaluated' | 'layer_evaluated'): void
58
+ subscribe(eventName: '*' | 'gate_evaluated' | 'dynamic_config_evaluated' | 'experiment_evaluated' | 'layer_evaluated' | 'specs_updated', callback: (event: any) => void): string
59
+ unsubscribe(eventName: '*' | 'gate_evaluated' | 'dynamic_config_evaluated' | 'experiment_evaluated' | 'layer_evaluated' | 'specs_updated'): void
60
60
  unsubscribeById(subscriptionId: string): void
61
61
  unsubscribeAll(): void
62
62
  constructor(networkFunc: unknown, sdkKey: string, options?: StatsigOptions | undefined | null)
@@ -74,7 +74,6 @@ export declare class StatsigNapiInternal {
74
74
  getExperimentByGroupName(experimentName: string, groupName: string): Experiment
75
75
  getFieldsNeededForExperiment(experimentName: string): Array<string>
76
76
  getLayer(user: StatsigUser, layerName: string, options?: LayerEvaluationOptions | undefined | null): Layer
77
- getPrompt(user: StatsigUser, promptName: string, options?: LayerEvaluationOptions | undefined | null): Layer
78
77
  getFieldsNeededForLayer(layerName: string): Array<string>
79
78
  identify(user: StatsigUser): void
80
79
  getParameterStore(user: StatsigUser, parameterStoreName: string, options?: ParameterStoreEvaluationOptions | undefined | null): ParameterStore