@statsig/statsig-node-core 0.4.2 → 0.4.3-beta.250604
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 +9 -9
- package/statsig-generated.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@statsig/statsig-node-core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3-beta.250604",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "jest --colors",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"@statsig/statsig-node-core-linux-x64-musl": "0.4.
|
|
49
|
-
"@statsig/statsig-node-core-linux-x64-gnu": "0.4.
|
|
50
|
-
"@statsig/statsig-node-core-win32-x64-msvc": "0.4.
|
|
51
|
-
"@statsig/statsig-node-core-darwin-x64": "0.4.
|
|
52
|
-
"@statsig/statsig-node-core-win32-ia32-msvc": "0.4.
|
|
53
|
-
"@statsig/statsig-node-core-linux-arm64-musl": "0.4.
|
|
54
|
-
"@statsig/statsig-node-core-linux-arm64-gnu": "0.4.
|
|
55
|
-
"@statsig/statsig-node-core-darwin-arm64": "0.4.
|
|
48
|
+
"@statsig/statsig-node-core-linux-x64-musl": "0.4.3-beta.250604",
|
|
49
|
+
"@statsig/statsig-node-core-linux-x64-gnu": "0.4.3-beta.250604",
|
|
50
|
+
"@statsig/statsig-node-core-win32-x64-msvc": "0.4.3-beta.250604",
|
|
51
|
+
"@statsig/statsig-node-core-darwin-x64": "0.4.3-beta.250604",
|
|
52
|
+
"@statsig/statsig-node-core-win32-ia32-msvc": "0.4.3-beta.250604",
|
|
53
|
+
"@statsig/statsig-node-core-linux-arm64-musl": "0.4.3-beta.250604",
|
|
54
|
+
"@statsig/statsig-node-core-linux-arm64-gnu": "0.4.3-beta.250604",
|
|
55
|
+
"@statsig/statsig-node-core-darwin-arm64": "0.4.3-beta.250604"
|
|
56
56
|
}
|
|
57
57
|
}
|
package/statsig-generated.d.ts
CHANGED
|
@@ -116,6 +116,11 @@ export interface ClientInitResponseOptions {
|
|
|
116
116
|
hashAlgorithm?: string
|
|
117
117
|
clientSdkKey?: string
|
|
118
118
|
includeLocalOverrides?: boolean
|
|
119
|
+
featureGateFilter?: Set<string>
|
|
120
|
+
experimentFilter?: Set<string>
|
|
121
|
+
dynamicConfigFilter?: Set<string>
|
|
122
|
+
layerFilter?: Set<string>
|
|
123
|
+
paramStoreFilter?: Set<string>
|
|
119
124
|
}
|
|
120
125
|
|
|
121
126
|
export interface DataStore {
|
|
@@ -203,6 +208,11 @@ export interface SpecAdapterConfig {
|
|
|
203
208
|
adapterType: 'data_store' | 'network_grpc_websocket' | 'network_http'
|
|
204
209
|
specsUrl?: string
|
|
205
210
|
initTimeoutMs: number
|
|
211
|
+
authenticationMode?: 'none' | 'tls' | 'mtls' | undefined | null
|
|
212
|
+
caCertPath?: string
|
|
213
|
+
clientCertPath?: string
|
|
214
|
+
clientKeyPath?: string
|
|
215
|
+
domainName?: string
|
|
206
216
|
}
|
|
207
217
|
|
|
208
218
|
export interface StatsigOptions {
|