@walkeros/cli 4.1.1-next-1779822275564 → 4.1.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.
package/dist/index.js CHANGED
@@ -5776,10 +5776,10 @@ function buildTelemetryObservers(flowId) {
5776
5776
  const url = process.env.WALKEROS_OBSERVER_URL;
5777
5777
  const token = process.env.WALKEROS_INGEST_TOKEN;
5778
5778
  if (!url || !token) return void 0;
5779
- const opts = resolveTelemetryOptions({ flowId });
5780
- if (!opts) return void 0;
5781
5779
  const emit = createBatchedPoster({ url, token });
5782
- return [createTelemetryObserver(emit, opts)];
5780
+ return [
5781
+ createTelemetryObserver(emit, () => resolveTelemetryOptions({ flowId }))
5782
+ ];
5783
5783
  }
5784
5784
  async function injectSecrets(api, logger) {
5785
5785
  try {
@@ -6674,7 +6674,7 @@ function validateMapping(input) {
6674
6674
  // src/commands/validate/validators/entry.ts
6675
6675
  import Ajv from "ajv";
6676
6676
  import { fetchPackageSchema } from "@walkeros/core";
6677
- var CLIENT_HEADER = "walkeros-cli/4.1.1-next-1779822275564";
6677
+ var CLIENT_HEADER = "walkeros-cli/4.1.2";
6678
6678
  var SECTIONS = ["destinations", "sources", "transformers"];
6679
6679
  function resolveEntry(path20, flowConfig) {
6680
6680
  const flows = flowConfig.flows;