You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"- standard: deeper checks (performance hints, common pitfalls).\n"
414
407
))
408
+
@telemetry_tool("validate_script")
415
409
defvalidate_script(
416
-
ctx: Context, uri: str, level: str="basic"
410
+
ctx: Any, uri: str, level: str="basic"
417
411
) ->Dict[str, Any]:
418
412
"""Validate a C# script and return diagnostics."""
419
413
name, directory=_split_uri(uri)
@@ -443,7 +437,7 @@ def validate_script(
443
437
))
444
438
@telemetry_tool("manage_script")
445
439
defmanage_script(
446
-
ctx: Context,
440
+
ctx: Any,
447
441
action: str,
448
442
name: str,
449
443
path: str,
@@ -573,7 +567,8 @@ def manage_script(
573
567
"Get manage_script capabilities (supported ops, limits, and guards).\n\n"
574
568
"Returns:\n- ops: list of supported structured ops\n- text_ops: list of supported text ops\n- max_edit_payload_bytes: server edit payload cap\n- guards: header/using guard enabled flag\n"
0 commit comments