@mastra/deployer 1.11.0-alpha.0 → 1.11.0-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.
@@ -17612,6 +17612,8 @@ function getHttpStatusForMastraError(errorId) {
17612
17612
  case "DATASET_NOT_FOUND":
17613
17613
  case "EXPERIMENT_NOT_FOUND":
17614
17614
  return 404;
17615
+ case "EXPERIMENT_NO_ITEMS":
17616
+ return 400;
17615
17617
  default:
17616
17618
  return 500;
17617
17619
  }
@@ -17975,7 +17977,7 @@ var TRIGGER_EXPERIMENT_ROUTE = createRoute({
17975
17977
  return {
17976
17978
  experimentId: result.experimentId,
17977
17979
  status: result.status,
17978
- totalItems: 0,
17980
+ totalItems: result.totalItems ?? 0,
17979
17981
  succeededCount: 0,
17980
17982
  failedCount: 0,
17981
17983
  startedAt: /* @__PURE__ */ new Date(),