@mastra/observability 1.6.0-alpha.1 → 1.6.0-alpha.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/CHANGELOG.md +9 -0
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/spans/default.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -18895,6 +18895,9 @@ var DefaultSpan = class extends BaseSpan {
|
|
|
18895
18895
|
if (this.isEvent) {
|
|
18896
18896
|
return;
|
|
18897
18897
|
}
|
|
18898
|
+
if (options.name !== void 0) {
|
|
18899
|
+
this.name = options.name;
|
|
18900
|
+
}
|
|
18898
18901
|
if (options.input !== void 0) {
|
|
18899
18902
|
this.input = deepClean(options.input, this.deepCleanOptions);
|
|
18900
18903
|
}
|