@statsig/client-core 3.24.4 → 3.25.0-beta.1

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/client-core",
3
- "version": "3.24.4",
3
+ "version": "3.25.0-beta.1",
4
4
  "license": "ISC",
5
5
  "homepage": "https://github.com/statsig-io/js-client-monorepo",
6
6
  "repository": {
@@ -160,7 +160,9 @@ function _getStatsigOptionLoggingCopy(options) {
160
160
  return {};
161
161
  }
162
162
  const loggingCopy = {};
163
- Object.entries(options).forEach(([option, value]) => {
163
+ Object.keys(options).forEach((key) => {
164
+ const option = key;
165
+ const value = options[option];
164
166
  const valueType = typeof value;
165
167
  switch (valueType) {
166
168
  case 'number':
@@ -1,4 +1,4 @@
1
- export declare const SDK_VERSION = "3.24.4";
1
+ export declare const SDK_VERSION = "3.25.0-beta.1";
2
2
  export type StatsigMetadata = {
3
3
  readonly [key: string]: string | undefined | null;
4
4
  readonly appVersion?: string;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StatsigMetadataProvider = exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = '3.24.4';
4
+ exports.SDK_VERSION = '3.25.0-beta.1';
5
5
  let metadata = {
6
6
  sdkVersion: exports.SDK_VERSION,
7
7
  sdkType: 'js-mono', // js-mono is overwritten by Precomp and OnDevice clients