@statsig/statsig-node-core 0.11.1-rc.2510280013 → 0.11.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 +9 -9
- package/statsig-generated.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@statsig/statsig-node-core",
|
|
3
|
-
"version": "0.11.1
|
|
3
|
+
"version": "0.11.1",
|
|
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.11.1
|
|
57
|
-
"@statsig/statsig-node-core-linux-x64-gnu": "0.11.1
|
|
58
|
-
"@statsig/statsig-node-core-win32-x64-msvc": "0.11.1
|
|
59
|
-
"@statsig/statsig-node-core-darwin-x64": "0.11.1
|
|
60
|
-
"@statsig/statsig-node-core-win32-ia32-msvc": "0.11.1
|
|
61
|
-
"@statsig/statsig-node-core-linux-arm64-musl": "0.11.1
|
|
62
|
-
"@statsig/statsig-node-core-linux-arm64-gnu": "0.11.1
|
|
63
|
-
"@statsig/statsig-node-core-darwin-arm64": "0.11.1
|
|
56
|
+
"@statsig/statsig-node-core-linux-x64-musl": "0.11.1",
|
|
57
|
+
"@statsig/statsig-node-core-linux-x64-gnu": "0.11.1",
|
|
58
|
+
"@statsig/statsig-node-core-win32-x64-msvc": "0.11.1",
|
|
59
|
+
"@statsig/statsig-node-core-darwin-x64": "0.11.1",
|
|
60
|
+
"@statsig/statsig-node-core-win32-ia32-msvc": "0.11.1",
|
|
61
|
+
"@statsig/statsig-node-core-linux-arm64-musl": "0.11.1",
|
|
62
|
+
"@statsig/statsig-node-core-linux-arm64-gnu": "0.11.1",
|
|
63
|
+
"@statsig/statsig-node-core-darwin-arm64": "0.11.1"
|
|
64
64
|
}
|
|
65
65
|
}
|
package/statsig-generated.d.ts
CHANGED
|
@@ -109,6 +109,8 @@ export declare class StatsigUser {
|
|
|
109
109
|
set custom(value: Record<string, string | number | boolean | Array<string | number | boolean>> | null)
|
|
110
110
|
get privateAttributes(): Record<string, string> | null
|
|
111
111
|
set privateAttributes(value: Record<string, string | number | boolean | Array<string | number | boolean>> | null)
|
|
112
|
+
get statsigEnvironment(): Record<string, string> | null
|
|
113
|
+
set statsigEnvironment(value: { tier?: string, [key: string]: string | undefined } | null | undefined)
|
|
112
114
|
get userID(): string | null
|
|
113
115
|
set userID(value: any)
|
|
114
116
|
get email(): string | null
|
|
@@ -303,6 +305,7 @@ export interface StatsigUserArgs {
|
|
|
303
305
|
country?: string
|
|
304
306
|
locale?: string
|
|
305
307
|
appVersion?: string
|
|
308
|
+
statsigEnvironment?: { tier?: string, [key: string]: string | undefined } | null | undefined
|
|
306
309
|
custom?: Record<string, string | number | boolean | Array<string | number | boolean> | null | Record<string, unknown>>
|
|
307
310
|
privateAttributes?: Record<string, string | number | boolean | Array<string | number | boolean> | null | Record<string, unknown>>
|
|
308
311
|
}
|