@browserstack/mcp-server 1.5.0-beta.3 → 1.5.0-beta.4
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.
|
@@ -1303,14 +1303,20 @@
|
|
|
1303
1303
|
"type": "string"
|
|
1304
1304
|
}
|
|
1305
1305
|
]
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"name": "runId",
|
|
1309
|
+
"type": "string",
|
|
1310
|
+
"description": "Tag a specific RUN instead of the test definition. When set, config.tags is applied to that run's own tags (the saved test is NOT changed); only config.tags may accompany runId. Omit it to edit the test."
|
|
1306
1311
|
}
|
|
1307
1312
|
],
|
|
1308
|
-
"intent": "Update an existing load test's name or configuration — use this to change tags, SLA thresholds, script or settings.",
|
|
1313
|
+
"intent": "Update an existing load test's name or configuration — use this to change tags, SLA thresholds, script or settings; also tags a specific run when runId is set.",
|
|
1309
1314
|
"guidance": [
|
|
1310
1315
|
"Partial update: send only the fields to change.",
|
|
1311
1316
|
"Pass ifVersion for optimistic concurrency; a stale value returns 409 VERSION_CONFLICT.",
|
|
1312
1317
|
"Script replacement uses the same two-phase pendingScriptUpload flow as create.",
|
|
1313
1318
|
"config is a partial update, but each field it carries REPLACES that field wholesale — it does not merge. tags overwrites the entire tag set; it does not append. To add a tag to a test (or the same tag across several tests), getLoadTest each one first and send the union under config.tags.",
|
|
1319
|
+
"To tag a specific RUN rather than the test, pass runId (a run UUID from listLoadTestRuns) together with config.tags — the tags apply to that one run and the saved test is untouched. A run inherits the test's tags until you set its own; setting run tags overrides (they also replace wholesale, so send the union to add). Omit runId to tag the test itself.",
|
|
1314
1320
|
"Tags live on the load test, not on its runs — there is no per-run tagging, so do not touch runs when asked to tag a test. To tag every test in a project, list them with listLoadTests and page through with cursor until hasMore is false, then updateLoadTest each one — do not stop after the first page or a subset."
|
|
1315
1321
|
],
|
|
1316
1322
|
"returns": [
|