Kevin Goslar
d768cf6580
docs: standardize license headers ( #3216 )
2022-11-03 10:10:12 -05:00
zepatrik
cc9d9e5b5d
refactor: make commands easier to consume
2022-10-06 10:54:04 +02:00
aeneasr
fe3c89900d
fix(cli): output format issues
2022-09-07 08:10:31 +02:00
aeneasr
81e79f2a34
refactor: `hydra token client` command
...
BREAKING CHANGE: The `hydra token client` command has been renamed to `hydra perform client-credentials` and now supports structured output (JSON, tables, ...).
2022-09-07 08:10:31 +02:00
aeneasr
7482b77c71
refactor: rename `hydra clients update` command
...
BREAKING CHANGE: Command `hydra clients update` is now `hydra update client`. Additionally, all flags are now singular:
```patch
hydra update client [client-id] \
- --redirect-uris foo --redirect-uris bar \
+ --redirect-uri foo --redirect-uri bar \
- --grant-types foo --grant-types bar \
+ --grant-type foo --grant-type bar \
- --response-types foo --response-types bar \
+ --response-type foo --response-type bar \
- --allowed-cors-origins foo --allowed-cors-origins bar \
+ --allowed-cors-origin foo --allowed-cors-origin bar \
- --post-logout-callbacks foo --post-logout-callbacks bar \
+ --post-logout-callback foo --post-logout-callback bar
```
2022-09-07 08:10:31 +02:00