bitfab-cli 0.2.264 → 0.2.265
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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28492,11 +28492,12 @@ var getExperimentGroup = {
|
|
|
28492
28492
|
var saveExperiment = {
|
|
28493
28493
|
name: "save_experiment",
|
|
28494
28494
|
title: "Save Experiment",
|
|
28495
|
-
description: "Update
|
|
28495
|
+
description: "Update an existing experiment (replay test run). Provide the experiment id and at least one of name, notes, or experimentGroupId. Omitted fields keep their current values; pass an empty notes string to clear notes, a group id to move the experiment to that existing group, or null to remove it from its group.",
|
|
28496
28496
|
inputSchema: {
|
|
28497
28497
|
testRunId: external_exports.uuid().describe("The experiment (test run) id to update"),
|
|
28498
28498
|
name: external_exports.string().trim().min(1).max(120).optional().describe("Optional human-readable experiment name"),
|
|
28499
|
-
notes: external_exports.string().max(1e4).optional().describe("Optional experiment notes. Omit to keep existing notes; pass an empty string to clear them.")
|
|
28499
|
+
notes: external_exports.string().max(1e4).optional().describe("Optional experiment notes. Omit to keep existing notes; pass an empty string to clear them."),
|
|
28500
|
+
experimentGroupId: external_exports.uuid().nullable().optional().describe("Existing experiment group id to move this experiment into. Omit to keep its current group; pass null to remove it from its group.")
|
|
28500
28501
|
}
|
|
28501
28502
|
};
|
|
28502
28503
|
var getExperiment = {
|