@bitfab/sdk 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
@@ -42,7 +42,7 @@ var __version__, __packageName__;
42
42
  var init_version_generated = __esm({
43
43
  "src/version.generated.ts"() {
44
44
  "use strict";
45
- __version__ = "0.38.7";
45
+ __version__ = "0.38.8";
46
46
  __packageName__ = "@bitfab/sdk";
47
47
  }
48
48
  });
@@ -5280,16 +5280,16 @@ var BitfabOpenAITracingProcessor = class {
5280
5280
  delete this.activeTraces[trace.traceId];
5281
5281
  }
5282
5282
  /**
5283
- * Called when a span is started.
5283
+ * Called when a span is started. Span payloads are authoritative completed
5284
+ * snapshots, so start notifications do not cross the transport boundary.
5284
5285
  */
5285
5286
  // biome-ignore lint/suspicious/noExplicitAny: OpenAI Agents SDK uses any for span data
5286
- async onSpanStart(span) {
5287
- this.sendSpan(span);
5287
+ async onSpanStart(_span) {
5288
5288
  }
5289
5289
  /**
5290
5290
  * Called when a span is ended.
5291
5291
  *
5292
- * Send all spans to Bitfab for complete trace capture.
5292
+ * Send the finalized span snapshot to Bitfab for complete trace capture.
5293
5293
  */
5294
5294
  // biome-ignore lint/suspicious/noExplicitAny: OpenAI Agents SDK uses any for span data
5295
5295
  async onSpanEnd(span) {