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
Add required-args pre-flight checks for four create/update commands
Closes the 'empty-body 400' gap audited across the create/update
surface: where the user supplies zero (or trivially insufficient)
flags, the server today returns a 400 with no useful body — the
new Stage A renderer can't help. These commands now fail fast
client-side with a CliError::Arg naming the missing flags.
- endpoint create: require at least --chain or --network
- endpoint update: require --label
- endpoint security set-options: require at least one toggle
- team set-endpoints: require at least one endpoint id
webhook create's required fields are already enforced by clap.
Four integration tests assert exit code 1 and zero HTTP traffic.
0 commit comments