Skip to content

Commit f180df4

Browse files
committed
feat(analytics): use string type for client property in SentinelMeta Type
1 parent 99b5a92 commit f180df4

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Change `client` field type in `SentinelMeta` from `ClientId` enum to `string` for flexible device identification ([#562](https://github.com/MetaMask/smart-transactions-controller/pull/562))
13+
1014
## [22.2.0]
1115

1216
### Added

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export type SentinelMeta = {
88
txType?: TransactionType;
99
feature?: Feature;
1010
kind?: Kind;
11-
client?: ClientId;
11+
client?: string;
1212
wallet?: string;
1313
};
1414

0 commit comments

Comments
 (0)