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
characters: Annotated[Optional[str], Query(description="Character(s) to search for. Either a string or Array of strings.")] =None,
167
+
characters: Annotated[Optional[str], Query(description="Character(s) to search for as a string value (e.g. a single name or a comma-separated list).")] =None,
163
168
format: Annotated[Optional[str], Query(description="Output format (currently only JSON)")] =None,
164
-
h: Annotated[Optional[str], Query(description="Headers to display. Either a string or Array of strings")] =None,
169
+
h: Annotated[Optional[str], Query(description="Headers to display as a string value (e.g. a single header or a comma-separated list).")] =None,
165
170
help: Annotated[Optional[str], Query(description=f"List available options. {_TF_TEXT}")] =None,
166
171
limit: Annotated[Optional[str], Query(description="Limit result set. '0' for no limit")] =None,
167
-
nulls: Annotated[Optional[str], Query(description="Sort null values first or last in order. Accepted values: 'first' or 'last'.")] =None,
172
+
nulls: Annotated[Optional[Literal["first", "last"]], Query(description="Sort null values either 'first' or 'last' in the sort order.")] =None,
168
173
pretty: Annotated[Optional[str], Query(description=f"Pretty print the result set. {_TF_TEXT}")] =None,
169
174
prune: Annotated[Optional[str], Query(description=f"Remove keys with null values. {_TF_TEXT}")] =None,
170
175
random: Annotated[Optional[str], Query(description=f"Returns array of random superheroes based on limit. {_TF_TEXT}")] =None,
171
176
s: Annotated[Optional[str], Query(description="Columns to sort on.")] =None,
172
177
seed: Annotated[Optional[str], Query(description=f"Keep the same random characters on multiple requests. {_TF_TEXT}")] =None,
0 commit comments