bitfab 0.38.7 → 0.38.8

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.cjs CHANGED
@@ -51,7 +51,7 @@ var __version__, __packageName__;
51
51
  var init_version_generated = __esm({
52
52
  "src/version.generated.ts"() {
53
53
  "use strict";
54
- __version__ = "0.38.7";
54
+ __version__ = "0.38.8";
55
55
  __packageName__ = "bitfab";
56
56
  }
57
57
  });
@@ -5289,16 +5289,16 @@ var BitfabOpenAITracingProcessor = class {
5289
5289
  delete this.activeTraces[trace.traceId];
5290
5290
  }
5291
5291
  /**
5292
- * Called when a span is started.
5292
+ * Called when a span is started. Span payloads are authoritative completed
5293
+ * snapshots, so start notifications do not cross the transport boundary.
5293
5294
  */
5294
5295
  // biome-ignore lint/suspicious/noExplicitAny: OpenAI Agents SDK uses any for span data
5295
- async onSpanStart(span) {
5296
- this.sendSpan(span);
5296
+ async onSpanStart(_span) {
5297
5297
  }
5298
5298
  /**
5299
5299
  * Called when a span is ended.
5300
5300
  *
5301
- * Send all spans to Bitfab for complete trace capture.
5301
+ * Send the finalized span snapshot to Bitfab for complete trace capture.
5302
5302
  */
5303
5303
  // biome-ignore lint/suspicious/noExplicitAny: OpenAI Agents SDK uses any for span data
5304
5304
  async onSpanEnd(span) {