@statsig/statsig-node-core 0.2.0 → 0.2.1-beta.250422

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.2.0",
3
+ "version": "0.2.1-beta.250422",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "jest --colors",
@@ -44,13 +44,13 @@
44
44
  ]
45
45
  },
46
46
  "optionalDependencies": {
47
- "@statsig/statsig-node-core-linux-x64-musl": "0.2.0",
48
- "@statsig/statsig-node-core-linux-x64-gnu": "0.2.0",
49
- "@statsig/statsig-node-core-win32-x64-msvc": "0.2.0",
50
- "@statsig/statsig-node-core-darwin-x64": "0.2.0",
51
- "@statsig/statsig-node-core-win32-ia32-msvc": "0.2.0",
52
- "@statsig/statsig-node-core-linux-arm64-musl": "0.2.0",
53
- "@statsig/statsig-node-core-linux-arm64-gnu": "0.2.0",
54
- "@statsig/statsig-node-core-darwin-arm64": "0.2.0"
47
+ "@statsig/statsig-node-core-linux-x64-musl": "0.2.1-beta.250422",
48
+ "@statsig/statsig-node-core-linux-x64-gnu": "0.2.1-beta.250422",
49
+ "@statsig/statsig-node-core-win32-x64-msvc": "0.2.1-beta.250422",
50
+ "@statsig/statsig-node-core-darwin-x64": "0.2.1-beta.250422",
51
+ "@statsig/statsig-node-core-win32-ia32-msvc": "0.2.1-beta.250422",
52
+ "@statsig/statsig-node-core-linux-arm64-musl": "0.2.1-beta.250422",
53
+ "@statsig/statsig-node-core-linux-arm64-gnu": "0.2.1-beta.250422",
54
+ "@statsig/statsig-node-core-darwin-arm64": "0.2.1-beta.250422"
55
55
  }
56
56
  }
@@ -45,7 +45,7 @@ export declare class ParameterStore {
45
45
  }
46
46
 
47
47
  export declare class StatsigNapiInternal {
48
- constructor(networkFunc: NapiNetworkFunc, sdkKey: string, options?: StatsigOptions | undefined | null)
48
+ constructor(networkFunc: unknown, sdkKey: string, options?: StatsigOptions | undefined | null)
49
49
  initialize(): Promise<StatsigResult>
50
50
  shutdown(timeoutMs?: number | undefined | null): Promise<StatsigResult>
51
51
  flushEvents(): Promise<StatsigResult>
@@ -70,6 +70,10 @@ export declare class StatsigNapiInternal {
70
70
  overrideExperiment(experimentName: string, value: Record<string, any>, adapter?: OverrideAdapterType | undefined | null): void
71
71
  overrideExperimentByGroupName(experimentName: string, groupName: string, adapter?: OverrideAdapterType | undefined | null): void
72
72
  overrideLayer(layerName: string, value: Record<string, any>, adapter?: OverrideAdapterType | undefined | null): void
73
+ getFeatureGateList(): Array<string>
74
+ getDynamicConfigList(): Array<string>
75
+ getExperimentList(): Array<string>
76
+ getParameterStoreList(): Array<string>
73
77
  }
74
78
 
75
79
  export declare class StatsigUser {