@mastra/libsql 1.6.3-alpha.0 → 1.6.4-alpha.0

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
@@ -3898,6 +3898,10 @@ var ExperimentsLibSQL = class extends ExperimentsStorage {
3898
3898
  updates.push("failedCount = ?");
3899
3899
  values.push(input.failedCount);
3900
3900
  }
3901
+ if (input.totalItems !== void 0) {
3902
+ updates.push("totalItems = ?");
3903
+ values.push(input.totalItems);
3904
+ }
3901
3905
  if (input.startedAt !== void 0) {
3902
3906
  updates.push("startedAt = ?");
3903
3907
  values.push(input.startedAt?.toISOString() ?? null);