Skip to content

Commit

Permalink
incr: add platform field
Browse files Browse the repository at this point in the history
  • Loading branch information
18alantom committed Mar 18, 2022
1 parent 591b02e commit 88f4469
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/telemetry/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ export interface Locale {
export type Count = Partial<{
[key in DoctypeName]: number;
}>;
export type Platform = 'Windows' | 'Mac' | 'Linux';

export interface Telemetry {
deviceId: UniqueId;
instanceId: UniqueId;
openTime: Timestamp;
platform?: Platform;
closeTime: Timestamp;
timeline?: InteractionEvent[];
counts?: Count;
Expand Down

0 comments on commit 88f4469

Please sign in to comment.