@mastra/pg 1.7.1 → 1.7.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/dist/index.js CHANGED
@@ -5163,6 +5163,10 @@ var ExperimentsPG = class _ExperimentsPG extends ExperimentsStorage {
5163
5163
  setClauses.push(`"failedCount" = $${paramIndex++}`);
5164
5164
  values.push(input.failedCount);
5165
5165
  }
5166
+ if (input.totalItems !== void 0) {
5167
+ setClauses.push(`"totalItems" = $${paramIndex++}`);
5168
+ values.push(input.totalItems);
5169
+ }
5166
5170
  if (input.skippedCount !== void 0) {
5167
5171
  setClauses.push(`"skippedCount" = $${paramIndex++}`);
5168
5172
  values.push(input.skippedCount);