@statsig/statsig-node-core 0.8.8-beta.2509112152 → 0.8.8-beta.2509130225

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.2509112152",
3
+ "version": "0.8.8-beta.2509130225",
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.2509112152",
57
- "@statsig/statsig-node-core-linux-x64-gnu": "0.8.8-beta.2509112152",
58
- "@statsig/statsig-node-core-win32-x64-msvc": "0.8.8-beta.2509112152",
59
- "@statsig/statsig-node-core-darwin-x64": "0.8.8-beta.2509112152",
60
- "@statsig/statsig-node-core-win32-ia32-msvc": "0.8.8-beta.2509112152",
61
- "@statsig/statsig-node-core-linux-arm64-musl": "0.8.8-beta.2509112152",
62
- "@statsig/statsig-node-core-linux-arm64-gnu": "0.8.8-beta.2509112152",
63
- "@statsig/statsig-node-core-darwin-arm64": "0.8.8-beta.2509112152"
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"
64
64
  }
65
65
  }
@@ -55,6 +55,7 @@ export declare class StatsigNapiInternal {
55
55
  shutdown(timeoutMs?: number | undefined | null): Promise<StatsigResult>
56
56
  flushEvents(): Promise<StatsigResult>
57
57
  logEvent(user: StatsigUser, eventName: string, value?: string | number | null, metadata?: Record<string, string> | undefined | null): void
58
+ forwardLogLineEvent(user: StatsigUser, logLevel: 'trace' | 'debug' |'log' | 'info' | 'warn' | 'error', value?: string | undefined | null, metadata?: Record<string, string> | undefined | null): void
58
59
  checkGate(user: StatsigUser, gateName: string, options?: FeatureGateEvaluationOptions | undefined | null): boolean
59
60
  getFeatureGate(user: StatsigUser, featureName: string, options?: FeatureGateEvaluationOptions | undefined | null): FeatureGate
60
61
  getFieldsNeededForGate(gateName: string): Array<string>