@statsig/statsig-node-core 0.19.1-beta.2604100313 → 0.19.1-beta.2604110309

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.19.1-beta.2604100313",
3
+ "version": "0.19.1-beta.2604110309",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "jest --colors"
@@ -60,13 +60,13 @@
60
60
  }
61
61
  },
62
62
  "optionalDependencies": {
63
- "@statsig/statsig-node-core-linux-x64-musl": "0.19.1-beta.2604100313",
64
- "@statsig/statsig-node-core-linux-x64-gnu": "0.19.1-beta.2604100313",
65
- "@statsig/statsig-node-core-win32-x64-msvc": "0.19.1-beta.2604100313",
66
- "@statsig/statsig-node-core-darwin-x64": "0.19.1-beta.2604100313",
67
- "@statsig/statsig-node-core-win32-ia32-msvc": "0.19.1-beta.2604100313",
68
- "@statsig/statsig-node-core-linux-arm64-musl": "0.19.1-beta.2604100313",
69
- "@statsig/statsig-node-core-linux-arm64-gnu": "0.19.1-beta.2604100313",
70
- "@statsig/statsig-node-core-darwin-arm64": "0.19.1-beta.2604100313"
63
+ "@statsig/statsig-node-core-linux-x64-musl": "0.19.1-beta.2604110309",
64
+ "@statsig/statsig-node-core-linux-x64-gnu": "0.19.1-beta.2604110309",
65
+ "@statsig/statsig-node-core-win32-x64-msvc": "0.19.1-beta.2604110309",
66
+ "@statsig/statsig-node-core-darwin-x64": "0.19.1-beta.2604110309",
67
+ "@statsig/statsig-node-core-win32-ia32-msvc": "0.19.1-beta.2604110309",
68
+ "@statsig/statsig-node-core-linux-arm64-musl": "0.19.1-beta.2604110309",
69
+ "@statsig/statsig-node-core-linux-arm64-gnu": "0.19.1-beta.2604110309",
70
+ "@statsig/statsig-node-core-darwin-arm64": "0.19.1-beta.2604110309"
71
71
  }
72
72
  }
@@ -125,7 +125,6 @@ export interface DataStore {
125
125
  shutdown?: () => Promise<void>
126
126
  get?: (key: string) => Promise<DataStoreResponse>
127
127
  getBytes?: (key: string) => Promise<{ result?: Uint8Array; time?: number }>
128
- supportsBytes?: boolean
129
128
  set?: (key: string, value: string, time?: number) => Promise<void>
130
129
  setBytes?: (key: string, value: ArrayBuffer | Uint8Array, time?: number) => Promise<void>
131
130
  supportPollingUpdatesFor?: (key: string) => Promise<boolean>