@blaxel/core 0.2.18-dev.142 → 0.2.18-dev.146

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.
@@ -20,7 +20,7 @@ export interface BlaxelSpan {
20
20
  /** Record an error on the span */
21
21
  recordException(error: Error): void;
22
22
  /** Set the status of the span */
23
- setStatus(status: 'ok' | 'error', message?: string): void;
23
+ setStatus(status: "ok" | "error", message?: string): void;
24
24
  /** End the span */
25
25
  end(): void;
26
26
  /** Get the span context (for passing to child spans) */
@@ -14,7 +14,9 @@ class NoopSpan {
14
14
  recordException() { }
15
15
  setStatus() { }
16
16
  end() { }
17
- getContext() { return null; }
17
+ getContext() {
18
+ return null;
19
+ }
18
20
  }
19
21
  /**
20
22
  * No-operation implementation of TelemetryProvider
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/core",
3
- "version": "0.2.18-dev.142",
3
+ "version": "0.2.18-dev.146",
4
4
  "description": "Blaxel Core SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",