Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasimir committed Aug 27, 2024
1 parent edeca0d commit c955d29
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/compass-telemetry/src/telemetry-events.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/**
* Events that are connection scoped are associated with one connection.
*/
type ConnectionScoped<E extends { payload: unknown }> = E & {
payload: E['payload'] & {
/**
Expand Down Expand Up @@ -1381,9 +1384,9 @@ type ApplicationLaunchedEvent = {
payload: {
context: string;
launch_connection: string;
protected: boolean;
protected: boolean | undefined;
readOnly: boolean;
maxTimeMS: number;
maxTimeMS: number | undefined;
global_config: boolean;
cli_args: boolean;
legacy_connections: boolean;
Expand Down

0 comments on commit c955d29

Please sign in to comment.