@leather.io/analytics 3.9.0 → 3.12.0
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/dist/index.d.ts +4 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefaultNetworkConfigurations,
|
|
1
|
+
import { DefaultNetworkConfigurations, StxBalance } from '@leather.io/models';
|
|
2
2
|
|
|
3
3
|
interface Events extends HistoricalEvents {
|
|
4
4
|
user_setting_updated: UserSettingValue;
|
|
@@ -27,7 +27,7 @@ interface Events extends HistoricalEvents {
|
|
|
27
27
|
liquid_stacking_increased: {
|
|
28
28
|
amount: number;
|
|
29
29
|
};
|
|
30
|
-
stx_balance_updated:
|
|
30
|
+
stx_balance_updated: StxBalance;
|
|
31
31
|
in_app_browser_opened: {
|
|
32
32
|
url: string;
|
|
33
33
|
};
|
|
@@ -259,6 +259,8 @@ type UserSettingValue = {
|
|
|
259
259
|
haptics: 'disabled' | 'enabled';
|
|
260
260
|
} | {
|
|
261
261
|
theme: 'light' | 'dark' | 'system';
|
|
262
|
+
} | {
|
|
263
|
+
language: string;
|
|
262
264
|
} | {
|
|
263
265
|
security_level: 'insecure' | 'secure' | 'not-selected';
|
|
264
266
|
} | {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@leather.io/analytics",
|
|
3
3
|
"author": "Leather.io contact@leather.io",
|
|
4
4
|
"description": "Analytics package for Leather using Segment",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.12.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/leather.io/mono/tree/dev/packages/analytics",
|
|
8
8
|
"repository": {
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/node": "
|
|
22
|
+
"@types/node": "24.0.8",
|
|
23
23
|
"concurrently": "8.2.2",
|
|
24
24
|
"prettier": "3.5.1",
|
|
25
25
|
"tsup": "8.4.0",
|
|
26
26
|
"typescript": "5.8.3",
|
|
27
27
|
"vitest": "2.1.9",
|
|
28
|
-
"@leather.io/models": "0.
|
|
28
|
+
"@leather.io/models": "0.39.0"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"dist"
|