Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions rust/src/api_explorer/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ pub(super) fn command() -> RuntimeCommandSpec {
RuntimeCommandSpec::new_typed::<SearchArgs, _, _, _>(
CommandSpec::from_args::<SearchArgs>("search", "Search API endpoints by keyword")
.with_long(
"Full-text searches across all API domains, matching against operation IDs, \
paths, summaries, and descriptions. Returns matching endpoints with domain, \
method, path, and summary. Use `api operation get <operationId>` \
to inspect a result in full detail.",
"Full-text searches across all API domains, matching against \
operation IDs, paths, summaries, and descriptions. Use \
`api operation get <operationId>` to inspect a result in full \
detail.",
Comment thread
jpage-godaddy marked this conversation as resolved.
)
.with_system("api")
.with_tier(Tier::Read)
.no_auth(true)
.with_default_fields("domain,method,path,summary")
.with_default_fields("operationId,domain,method,path,summary")
.with_output_schema::<ApiEndpoint>()
.with_pagination(PaginationConfig {
max_limit: 100,
Expand Down
Loading