@statsig/statsig-node-core 0.13.1-beta.2512051931 → 0.13.1-beta.2512100241
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 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@statsig/statsig-node-core",
|
|
3
|
-
"version": "0.13.1-beta.
|
|
3
|
+
"version": "0.13.1-beta.2512100241",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "jest --colors"
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
]
|
|
56
56
|
},
|
|
57
57
|
"optionalDependencies": {
|
|
58
|
-
"@statsig/statsig-node-core-linux-x64-musl": "0.13.1-beta.
|
|
59
|
-
"@statsig/statsig-node-core-linux-x64-gnu": "0.13.1-beta.
|
|
60
|
-
"@statsig/statsig-node-core-win32-x64-msvc": "0.13.1-beta.
|
|
61
|
-
"@statsig/statsig-node-core-darwin-x64": "0.13.1-beta.
|
|
62
|
-
"@statsig/statsig-node-core-win32-ia32-msvc": "0.13.1-beta.
|
|
63
|
-
"@statsig/statsig-node-core-linux-arm64-musl": "0.13.1-beta.
|
|
64
|
-
"@statsig/statsig-node-core-linux-arm64-gnu": "0.13.1-beta.
|
|
65
|
-
"@statsig/statsig-node-core-darwin-arm64": "0.13.1-beta.
|
|
58
|
+
"@statsig/statsig-node-core-linux-x64-musl": "0.13.1-beta.2512100241",
|
|
59
|
+
"@statsig/statsig-node-core-linux-x64-gnu": "0.13.1-beta.2512100241",
|
|
60
|
+
"@statsig/statsig-node-core-win32-x64-msvc": "0.13.1-beta.2512100241",
|
|
61
|
+
"@statsig/statsig-node-core-darwin-x64": "0.13.1-beta.2512100241",
|
|
62
|
+
"@statsig/statsig-node-core-win32-ia32-msvc": "0.13.1-beta.2512100241",
|
|
63
|
+
"@statsig/statsig-node-core-linux-arm64-musl": "0.13.1-beta.2512100241",
|
|
64
|
+
"@statsig/statsig-node-core-linux-arm64-gnu": "0.13.1-beta.2512100241",
|
|
65
|
+
"@statsig/statsig-node-core-darwin-arm64": "0.13.1-beta.2512100241"
|
|
66
66
|
}
|
|
67
67
|
}
|
package/statsig-generated.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ export declare class StatsigUser {
|
|
|
64
64
|
get privateAttributes(): Record<string, string | number | boolean | Array<string | number | boolean>> | null
|
|
65
65
|
set privateAttributes(value: Record<string, string | number | boolean | Array<string | number | boolean>> | null)
|
|
66
66
|
get statsigEnvironment(): Record<string, string> | null
|
|
67
|
-
set statsigEnvironment(value: { tier?: string, [key: string]: string | undefined } |
|
|
67
|
+
set statsigEnvironment(value: { tier?: string, [key: string]: string | undefined } | undefined)
|
|
68
68
|
get userID(): string | null
|
|
69
69
|
set userID(value: any)
|
|
70
70
|
get email(): string | null
|
|
@@ -272,9 +272,9 @@ export interface StatsigUserArgs {
|
|
|
272
272
|
country?: string
|
|
273
273
|
locale?: string
|
|
274
274
|
appVersion?: string
|
|
275
|
-
statsigEnvironment?: { tier?: string, [key: string]: string | undefined } |
|
|
275
|
+
statsigEnvironment?: { tier?: string, [key: string]: string | undefined } | undefined
|
|
276
276
|
custom?: Record<string, string | number | boolean | Array<string | number | boolean> | null | undefined | Record<string, unknown>>
|
|
277
|
-
privateAttributes?: Record<string, string | number | boolean | Array<string | number | boolean> |
|
|
277
|
+
privateAttributes?: Record<string, string | number | boolean | Array<string | number | boolean> | Record<string, unknown>>
|
|
278
278
|
}
|
|
279
279
|
// ---- Manually defined typing section -----
|
|
280
280
|
|