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
Copy file name to clipboardExpand all lines: src/sequor/cli.py
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -111,10 +111,10 @@ def run(
111
111
op_id: str=typer.Option(None, "--op-id", help="ID of the operation to run"),
112
112
113
113
# http_request op specific options
114
-
debug_foreach_record: str=typer.Option(None, "--debug-foreach-record", help="Run with a test for_each record specified as JSON object (or records if batching is enabled as JSON array). The record(s) should match the structure expected by the operation. Example: --debug-test-record='{\"email\":\"test@example.com\"}'"),
115
-
debug_request_preview_trace: bool=typer.Option(False, "--debug-request-preview-trace", help="Run only HTTP request part and show HTTP request trace", is_flag=True),
116
-
debug_request_preview_pretty: bool=typer.Option(False, "--debug-request-preview-pretty", help="Run only HTTP request part and show pretty trace", is_flag=True),
117
-
debug_response_parser_preview: bool=typer.Option(False, "--debug-response-parser-preview", help="Show parser result without applying it", is_flag=True),
114
+
debug_foreach_record: str=typer.Option(None, "--debug-httprequest-foreach-test-record", help="Run with a test for_each record specified as JSON object (or records if batching is enabled as JSON array). The record(s) should match the structure expected by the operation. Example: --debug-test-record='{\"email\":\"test@example.com\"}'"),
115
+
debug_request_preview_trace: bool=typer.Option(False, "--debug-httprequest-preview-trace", help="Run only HTTP request part and show HTTP request trace", is_flag=True),
116
+
debug_request_preview_pretty: bool=typer.Option(False, "--debug-httprequest-preview-pretty", help="Run only HTTP request part and show pretty trace", is_flag=True),
117
+
debug_response_parser_preview: bool=typer.Option(False, "--debug-httprequest-response-parser-preview", help="Show parser result without applying it", is_flag=True),
0 commit comments