@mastra/client-js 1.43.0 → 1.44.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.
package/dist/index.js CHANGED
@@ -7524,6 +7524,16 @@ var MastraClient = class extends BaseResource {
7524
7524
  return this.request(`/datasets/${encodeURIComponent(datasetId)}/experiments/${encodeURIComponent(experimentId)}`);
7525
7525
  }
7526
7526
  /**
7527
+ * Updates a dataset experiment's name, description or metadata
7528
+ */
7529
+ updateDatasetExperiment(params) {
7530
+ const { datasetId, experimentId, ...body } = params;
7531
+ return this.request(`/datasets/${encodeURIComponent(datasetId)}/experiments/${encodeURIComponent(experimentId)}`, {
7532
+ method: "PATCH",
7533
+ body
7534
+ });
7535
+ }
7536
+ /**
7527
7537
  * Lists results for a dataset experiment
7528
7538
  */
7529
7539
  listDatasetExperimentResults(datasetId, experimentId, pagination) {