@@ -116,10 +116,9 @@ def retrieve(
116116 extra_body : Body | None = None ,
117117 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
118118 ) -> AgentAuthInvocationResponse :
119- """Returns invocation details including app_name and target_domain.
120-
121- Uses the JWT
122- returned by the exchange endpoint, or standard API key or JWT authentication.
119+ """
120+ Returns invocation details including status, app_name, and target_domain.
121+ Supports both API key and JWT (from exchange endpoint) authentication.
123122
124123 Args:
125124 extra_headers: Send extra headers
@@ -155,7 +154,7 @@ def discover(
155154 """
156155 Inspects the target site to detect logged-in state or discover required fields.
157156 Returns 200 with success: true when fields are found, or 4xx/5xx for failures.
158- Requires the JWT returned by the exchange endpoint.
157+ Supports both API key and JWT (from exchange endpoint) authentication .
159158
160159 Args:
161160 login_url: Optional login page URL. If provided, will override the stored login URL for
@@ -233,7 +232,8 @@ def submit(
233232 ) -> AgentAuthSubmitResponse :
234233 """
235234 Submits field values for the discovered login form and may return additional
236- auth fields or success. Requires the JWT returned by the exchange endpoint.
235+ auth fields or success. Supports both API key and JWT (from exchange endpoint)
236+ authentication.
237237
238238 Args:
239239 field_values: Values for the discovered login fields
@@ -342,10 +342,9 @@ async def retrieve(
342342 extra_body : Body | None = None ,
343343 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
344344 ) -> AgentAuthInvocationResponse :
345- """Returns invocation details including app_name and target_domain.
346-
347- Uses the JWT
348- returned by the exchange endpoint, or standard API key or JWT authentication.
345+ """
346+ Returns invocation details including status, app_name, and target_domain.
347+ Supports both API key and JWT (from exchange endpoint) authentication.
349348
350349 Args:
351350 extra_headers: Send extra headers
@@ -381,7 +380,7 @@ async def discover(
381380 """
382381 Inspects the target site to detect logged-in state or discover required fields.
383382 Returns 200 with success: true when fields are found, or 4xx/5xx for failures.
384- Requires the JWT returned by the exchange endpoint.
383+ Supports both API key and JWT (from exchange endpoint) authentication .
385384
386385 Args:
387386 login_url: Optional login page URL. If provided, will override the stored login URL for
@@ -461,7 +460,8 @@ async def submit(
461460 ) -> AgentAuthSubmitResponse :
462461 """
463462 Submits field values for the discovered login form and may return additional
464- auth fields or success. Requires the JWT returned by the exchange endpoint.
463+ auth fields or success. Supports both API key and JWT (from exchange endpoint)
464+ authentication.
465465
466466 Args:
467467 field_values: Values for the discovered login fields
0 commit comments