@mastra/observability 1.0.0-beta.8 → 1.0.0-beta.9
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 +13 -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/span_processors/sensitive-data-filter.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -6451,6 +6451,9 @@ var SensitiveDataFilter = class {
|
|
|
6451
6451
|
return "[Circular Reference]";
|
|
6452
6452
|
}
|
|
6453
6453
|
seen.add(obj);
|
|
6454
|
+
if (obj instanceof Date) {
|
|
6455
|
+
return obj;
|
|
6456
|
+
}
|
|
6454
6457
|
if (Array.isArray(obj)) {
|
|
6455
6458
|
return obj.map((item) => this.deepFilter(item, seen));
|
|
6456
6459
|
}
|