You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Fields of the init status report populated when the tools source is `download`. */
86
86
interfaceInitToolsDownloadFields{
87
87
/** Time taken to download the bundle, in milliseconds. */
88
-
tools_download_duration_ms: number;
88
+
tools_download_duration_ms?: number;
89
89
/** Whether the relevant tools dotcom feature flags have been misconfigured. Only populated if we attempt to determine the default version based on
FBC7
the dotcom feature flags. */
90
-
tools_feature_flags_valid: boolean;
90
+
tools_feature_flags_valid?: boolean;
91
91
}
92
92
93
93
asyncfunctionsendInitStatusReport(
94
94
actionStatus: ActionStatus,
95
95
startedAt: Date,
96
-
config: configUtils.Config,
96
+
config: configUtils.Config|undefined,
97
97
toolsDownloadDurationMs: number|undefined,
98
98
toolsFeatureFlagsValid: boolean|undefined,
99
99
toolsSource: ToolsSource,
@@ -116,19 +116,12 @@ async function sendInitStatusReport(
0 commit comments