@statsig/statsig-node-core 0.20.2-beta.2607220301 → 0.20.2-beta.2607230301
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 +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@statsig/statsig-node-core",
|
|
3
|
-
"version": "0.20.2-beta.
|
|
3
|
+
"version": "0.20.2-beta.2607230301",
|
|
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.20.2-beta.
|
|
64
|
-
"@statsig/statsig-node-core-linux-x64-gnu": "0.20.2-beta.
|
|
65
|
-
"@statsig/statsig-node-core-win32-x64-msvc": "0.20.2-beta.
|
|
66
|
-
"@statsig/statsig-node-core-darwin-x64": "0.20.2-beta.
|
|
67
|
-
"@statsig/statsig-node-core-win32-ia32-msvc": "0.20.2-beta.
|
|
68
|
-
"@statsig/statsig-node-core-linux-arm64-musl": "0.20.2-beta.
|
|
69
|
-
"@statsig/statsig-node-core-linux-arm64-gnu": "0.20.2-beta.
|
|
70
|
-
"@statsig/statsig-node-core-darwin-arm64": "0.20.2-beta.
|
|
63
|
+
"@statsig/statsig-node-core-linux-x64-musl": "0.20.2-beta.2607230301",
|
|
64
|
+
"@statsig/statsig-node-core-linux-x64-gnu": "0.20.2-beta.2607230301",
|
|
65
|
+
"@statsig/statsig-node-core-win32-x64-msvc": "0.20.2-beta.2607230301",
|
|
66
|
+
"@statsig/statsig-node-core-darwin-x64": "0.20.2-beta.2607230301",
|
|
67
|
+
"@statsig/statsig-node-core-win32-ia32-msvc": "0.20.2-beta.2607230301",
|
|
68
|
+
"@statsig/statsig-node-core-linux-arm64-musl": "0.20.2-beta.2607230301",
|
|
69
|
+
"@statsig/statsig-node-core-linux-arm64-gnu": "0.20.2-beta.2607230301",
|
|
70
|
+
"@statsig/statsig-node-core-darwin-arm64": "0.20.2-beta.2607230301"
|
|
71
71
|
}
|
|
72
72
|
}
|
package/statsig-generated.d.ts
CHANGED
|
@@ -157,6 +157,16 @@ export interface EvaluationDetails {
|
|
|
157
157
|
export interface ExperimentEvaluationOptions {
|
|
158
158
|
disableExposureLogging?: boolean
|
|
159
159
|
userPersistedValues?: Record<string, any>
|
|
160
|
+
/**
|
|
161
|
+
* When a persisted sticky value exists, let a matching console override
|
|
162
|
+
* rule take precedence over it.
|
|
163
|
+
*/
|
|
164
|
+
enforceOverrides?: boolean
|
|
165
|
+
/**
|
|
166
|
+
* When a persisted sticky value exists, re-check targeting and drop the
|
|
167
|
+
* sticky value if the user no longer passes targeting.
|
|
168
|
+
*/
|
|
169
|
+
enforceTargeting?: boolean
|
|
160
170
|
}
|
|
161
171
|
|
|
162
172
|
export interface ExperimentGroup {
|
|
@@ -189,6 +199,16 @@ export declare const enum GCIRResponseFormat {
|
|
|
189
199
|
export interface LayerEvaluationOptions {
|
|
190
200
|
disableExposureLogging?: boolean
|
|
191
201
|
userPersistedValues?: Record<string, any>
|
|
202
|
+
/**
|
|
203
|
+
* When a persisted sticky value exists, let a matching console override
|
|
204
|
+
* rule take precedence over it.
|
|
205
|
+
*/
|
|
206
|
+
enforceOverrides?: boolean
|
|
207
|
+
/**
|
|
208
|
+
* When a persisted sticky value exists, re-check targeting and drop the
|
|
209
|
+
* sticky value if the user no longer passes targeting.
|
|
210
|
+
*/
|
|
211
|
+
enforceTargeting?: boolean
|
|
192
212
|
}
|
|
193
213
|
|
|
194
214
|
export interface ObservabilityClient {
|