As it currently is, most command go through the auth command, which makes the command longer.
kamanda auth users set customClaims [uid1] --customClaims "key1:value1" --customClaims "key2:value2"
This can be shortened by removing the auth command
kamanda users set customClaims [uid1] --customClaims "key1:value1" --customClaims "key2:value2"
Another example is listing users:
Which can be shortened to:
It also makes the user commands easier to recall, for instance, as it currently stands, searching for users by email:
kamanda auth find by-email email@example.com
becomes
kamanda users find by-email email@example.com
This will be definitely a breaking change.
As it currently is, most command go through the
authcommand, which makes the command longer.This can be shortened by removing the
authcommandAnother example is listing users:
Which can be shortened to:
It also makes the user commands easier to recall, for instance, as it currently stands, searching for users by email:
becomes
This will be definitely a breaking change.