@poncho-ai/cli 0.33.1 → 0.33.2

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.
@@ -408,7 +408,6 @@ export const isDefaultOnboardingConfig = (
408
408
  const telemetryEnabled = config.telemetry?.enabled ?? true;
409
409
  const telemetryHasExtra =
410
410
  typeof config.telemetry?.otlp !== "undefined" ||
411
- typeof config.telemetry?.latitude !== "undefined" ||
412
411
  typeof config.telemetry?.handler !== "undefined";
413
412
  if (!telemetryEnabled || telemetryHasExtra) {
414
413
  return false;
@@ -536,12 +535,8 @@ const collectEnvFileLines = (answers: OnboardingAnswers): string[] => {
536
535
 
537
536
  const telemetryEnabled = Boolean(answers["telemetry.enabled"] ?? true);
538
537
  if (telemetryEnabled) {
539
- lines.push("# Telemetry (optional)");
540
- lines.push("# Latitude telemetry setup: https://docs.latitude.so/");
541
- lines.push("# If not using Latitude yet, you can leave these empty.");
542
- lines.push("LATITUDE_API_KEY=");
543
- lines.push("LATITUDE_PROJECT_ID=");
544
- lines.push("LATITUDE_PATH=");
538
+ lines.push("# Telemetry (optional) — set an OTLP endpoint to export traces");
539
+ lines.push("# OTEL_EXPORTER_OTLP_ENDPOINT=");
545
540
  lines.push("");
546
541
  }
547
542