@mastra/libsql 1.7.2-alpha.0 → 1.7.2-alpha.1

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.js CHANGED
@@ -3906,6 +3906,7 @@ var ExperimentsLibSQL = class extends ExperimentsStorage {
3906
3906
  id: row.id,
3907
3907
  datasetId: row.datasetId ?? null,
3908
3908
  datasetVersion: row.datasetVersion != null ? row.datasetVersion : null,
3909
+ agentVersion: row.agentVersion ?? null,
3909
3910
  targetType: row.targetType,
3910
3911
  targetId: row.targetId,
3911
3912
  name: row.name ?? void 0,
@@ -3954,6 +3955,7 @@ var ExperimentsLibSQL = class extends ExperimentsStorage {
3954
3955
  id,
3955
3956
  datasetId: input.datasetId ?? null,
3956
3957
  datasetVersion: input.datasetVersion ?? null,
3958
+ agentVersion: input.agentVersion ?? null,
3957
3959
  targetType: input.targetType,
3958
3960
  targetId: input.targetId,
3959
3961
  name: input.name ?? null,
@@ -3974,6 +3976,7 @@ var ExperimentsLibSQL = class extends ExperimentsStorage {
3974
3976
  id,
3975
3977
  datasetId: input.datasetId,
3976
3978
  datasetVersion: input.datasetVersion,
3979
+ agentVersion: input.agentVersion ?? null,
3977
3980
  targetType: input.targetType,
3978
3981
  targetId: input.targetId,
3979
3982
  name: input.name,