@voltagent/libsql 1.0.6 → 1.0.7
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.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1631,6 +1631,14 @@ var LibSQLObservabilityAdapter = class {
|
|
|
1631
1631
|
}
|
|
1632
1632
|
return log;
|
|
1633
1633
|
}
|
|
1634
|
+
getInfo() {
|
|
1635
|
+
return {
|
|
1636
|
+
adapter: this.constructor.name,
|
|
1637
|
+
displayName: "LibSQL Observability Storage",
|
|
1638
|
+
persistent: true,
|
|
1639
|
+
description: "Persists spans and logs to a LibSQL/Turso database for long-term retention."
|
|
1640
|
+
};
|
|
1641
|
+
}
|
|
1634
1642
|
/**
|
|
1635
1643
|
* Close the database connection
|
|
1636
1644
|
*/
|