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
feat: rename incident list --title to --query (#10)
The SDK's incident list API expanded its title filter into a
broader free-text query that also matches labels, content, and
resolves 24-char incident IDs / 6-char incident nums to direct
lookups. Rename the CLI flag to reflect the wider semantics.
cmd.Flags().Int64Var(&channelID, "channel", 0, "Filter by channel ID")
103
-
cmd.Flags().StringVar(&title, "title", "", "Search by title keyword")
103
+
cmd.Flags().StringVar(&query, "query", "", "Free-text search across title/labels/content (also resolves a 24-char incident ID or 6-char incident num to a direct lookup)")
104
104
cmd.Flags().StringVar(&since, "since", "24h", "Start time (duration, date, datetime, or unix timestamp)")
0 commit comments