diff --git a/docs/content/commands/.gitkeep b/docs/content/commands/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/content/commands/auth/.gitkeep b/docs/content/commands/auth/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/content/commands/auth/kamanda_auth.md b/docs/content/commands/auth/kamanda_auth.md deleted file mode 100644 index 700be36..0000000 --- a/docs/content/commands/auth/kamanda_auth.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "kamanda auth" -slug: kamanda_auth -url: /commands/kamanda_auth/ -summary: "Perform Firebase Auth Operations" ---- -## kamanda auth - -Perform Firebase Auth Operations - -### Synopsis - -Perform Firebase Auth Operations - -### Options - -``` - -h, --help help for auth -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda](/commands/kamanda/) - Kamanda is an extender Firebase Tools CLI -* [kamanda auth addUser](/commands/kamanda_auth_adduser/) - Add a new Firebase Email/Password user (Accepts Custom Claims) -* [kamanda auth addUsers](/commands/kamanda_auth_addusers/) - Add multiple users from file (JSON/YAML) -* [kamanda auth customClaims](/commands/kamanda_auth_customclaims/) - Add custom claims to an existing firebase user or users through their UIDs -* [kamanda auth deleteUsers](/commands/kamanda_auth_deleteusers/) - Delete multiple Firebase Auth User by their UID -* [kamanda auth find](/commands/kamanda_auth_find/) - Find a a Firebase Auth user by their Firebase UID. -* [kamanda auth users](/commands/kamanda_auth_users/) - Fetch and display a list of users in firebase auth. - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_addUser.md b/docs/content/commands/auth/kamanda_auth_addUser.md deleted file mode 100644 index 644d9cf..0000000 --- a/docs/content/commands/auth/kamanda_auth_addUser.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: "kamanda auth addUser" -slug: kamanda_auth_addUser -url: /commands/kamanda_auth_adduser/ -summary: "Add a new Firebase Email/Password user (Accepts Custom Claims)" ---- -## kamanda auth addUser - -Add a new Firebase Email/Password user (Accepts Custom Claims) - -### Synopsis - -Creates a new Firebase User (Email/Password). Both the Email and the Password are required. - -You can also add custom claims using --custom-claims="key:value" flag. - -``` -kamanda auth addUser [flags] -``` - -### Examples - -``` -kamanda auth addUser --email email@example.com --password 1234 --custom-claims "admin=true" --custom-claims "key:value" -``` - -### Options - -``` - -c, --customClaims stringToString user custom claims i.e. --customClaims "admin=true" (default []) - --email string the email of the new user (Required) - --emailVerified is the email verified - -h, --help help for addUser - --isDisabled is the user account disabled - --name string the name of the user - --password string the password of the new user (Required) - --phone string the phone number of the user - --photoURL string the photo url of the user - --uid string the uid of the user. autogenerated if absent -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth](/commands/kamanda_auth/) - Perform Firebase Auth Operations - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_addUsers.md b/docs/content/commands/auth/kamanda_auth_addUsers.md deleted file mode 100644 index b9ce0aa..0000000 --- a/docs/content/commands/auth/kamanda_auth_addUsers.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: "kamanda auth addUsers" -slug: kamanda_auth_addUsers -url: /commands/kamanda_auth_addusers/ -summary: "Add multiple users from file (JSON/YAML)" ---- -## kamanda auth addUsers - -Add multiple users from file (JSON/YAML) - -### Synopsis - -Add users from a JSON/YAML File. - -The following fields are accepted: -- customClaims (key-value map) - user custom claims -- email (Required, string) - the email of the new user -- emailVerified (boolean) - is the email verified -- isDisabled (boolean) - is the user account disabled -- name (string) - the name of the user -- password (required, string) - the password of the new user -- phone (string) - the phone number of the user -- photoURL (string) - the photo url of the user -- uid (string) - the uid of the user. autogenerated if absent - - -``` -kamanda auth addUsers [flags] -``` - -### Examples - -``` -kamanda auth add-users --src users.json --extension json -``` - -### Options - -``` - -e, --extension string Source file type - json or yaml (default "yaml") - -h, --help help for addUsers - -s, --source string file with list of users to create -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth](/commands/kamanda_auth/) - Perform Firebase Auth Operations - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_customClaims.md b/docs/content/commands/auth/kamanda_auth_customClaims.md deleted file mode 100644 index 4d6597c..0000000 --- a/docs/content/commands/auth/kamanda_auth_customClaims.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "kamanda auth customClaims" -slug: kamanda_auth_customClaims -url: /commands/kamanda_auth_customclaims/ -summary: "Add custom claims to an existing firebase user or users through their UIDs" ---- -## kamanda auth customClaims - -Add custom claims to an existing firebase user or users through their UIDs - -### Synopsis - -Add custom claims to an existing firebase user or users through their UIDs - -``` -kamanda auth customClaims [flags] -``` - -### Examples - -``` -kamanda auth custom-claims [uid1] [uid2] --customClaims "key1:value1" --customClaims "key2:value2" -``` - -### Options - -``` - -c, --customClaims stringToString user custom claims i.e. --customClaims "admin=true" (default []) - -h, --help help for customClaims -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth](/commands/kamanda_auth/) - Perform Firebase Auth Operations - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_deleteUsers.md b/docs/content/commands/auth/kamanda_auth_deleteUsers.md deleted file mode 100644 index 6122f06..0000000 --- a/docs/content/commands/auth/kamanda_auth_deleteUsers.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "kamanda auth deleteUsers" -slug: kamanda_auth_deleteUsers -url: /commands/kamanda_auth_deleteusers/ -summary: "Delete multiple Firebase Auth User by their UID" ---- -## kamanda auth deleteUsers - -Delete multiple Firebase Auth User by their UID - -### Synopsis - -Delete multiple Firebase Auth User by their UID - -``` -kamanda auth deleteUsers [flags] -``` - -### Examples - -``` -kamanda auth delete [uid1] [uid2] [uid3] -``` - -### Options - -``` - -h, --help help for deleteUsers -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth](/commands/kamanda_auth/) - Perform Firebase Auth Operations - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_find.md b/docs/content/commands/auth/kamanda_auth_find.md deleted file mode 100644 index 342e6ef..0000000 --- a/docs/content/commands/auth/kamanda_auth_find.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "kamanda auth find" -slug: kamanda_auth_find -url: /commands/kamanda_auth_find/ -summary: "Find a a Firebase Auth user by their Firebase UID." ---- -## kamanda auth find - -Find a a Firebase Auth user by their Firebase UID. - -### Synopsis - -Find a a Firebase Auth user by their Firebase UID. -To find user by email or by phone use "find by-email" or "find by-phone" - -``` -kamanda auth find [flags] -``` - -### Examples - -``` -kamanda auth find [UID1] [UID2] -``` - -### Options - -``` - -h, --help help for find - -m, --minimal-view Show a minimal ui - -t, --toggle Help message for toggle -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth](/commands/kamanda_auth/) - Perform Firebase Auth Operations -* [kamanda auth find byEmail](/commands/kamanda_auth_find_byemail/) - Find a Firebase Auth user by email address -* [kamanda auth find byPhone](/commands/kamanda_auth_find_byphone/) - find a Firebase Auth User by their phone number - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_find_byEmail.md b/docs/content/commands/auth/kamanda_auth_find_byEmail.md deleted file mode 100644 index 7f77f5f..0000000 --- a/docs/content/commands/auth/kamanda_auth_find_byEmail.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "kamanda auth find byEmail" -slug: kamanda_auth_find_byEmail -url: /commands/kamanda_auth_find_byemail/ -summary: "Find a Firebase Auth user by email address" ---- -## kamanda auth find byEmail - -Find a Firebase Auth user by email address - -### Synopsis - -Find a Firebase Auth user by email address - -``` -kamanda auth find byEmail [flags] -``` - -### Examples - -``` -kamanda auth find by-email email@example.com -``` - -### Options - -``` - -h, --help help for byEmail -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth find](/commands/kamanda_auth_find/) - Find a a Firebase Auth user by their Firebase UID. - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_find_byPhone.md b/docs/content/commands/auth/kamanda_auth_find_byPhone.md deleted file mode 100644 index 60997dd..0000000 --- a/docs/content/commands/auth/kamanda_auth_find_byPhone.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "kamanda auth find byPhone" -slug: kamanda_auth_find_byPhone -url: /commands/kamanda_auth_find_byphone/ -summary: "find a Firebase Auth User by their phone number" ---- -## kamanda auth find byPhone - -find a Firebase Auth User by their phone number - -### Synopsis - -find a Firebase Auth User by their phone number - -``` -kamanda auth find byPhone [flags] -``` - -### Examples - -``` -kamanda auth find by-phone +254712345678 -``` - -### Options - -``` - -h, --help help for byPhone -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth find](/commands/kamanda_auth_find/) - Find a a Firebase Auth user by their Firebase UID. - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/auth/kamanda_auth_users.md b/docs/content/commands/auth/kamanda_auth_users.md deleted file mode 100644 index 85e1972..0000000 --- a/docs/content/commands/auth/kamanda_auth_users.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: "kamanda auth users" -slug: kamanda_auth_users -url: /commands/kamanda_auth_users/ -summary: "Fetch and display a list of users in firebase auth." ---- -## kamanda auth users - -Fetch and display a list of users in firebase auth. - -### Synopsis - -This fetches users on Firebase Auth and either outputs it in either table, json or yaml format. - -In cases where there are more than 500 users, you will also get a nextPageToken, that you can use to fetch more users. - -``` -kamanda auth users [flags] -``` - -### Examples - -``` -kamanda auth users -kamanda auth users -o json -kamanda auth users -output yaml -``` - -### Options - -``` - -h, --help help for users - -m, --minimal-view Show a minimal ui - -n, --nextPageToken string Fetch next set of results -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda auth](/commands/kamanda_auth/) - Perform Firebase Auth Operations - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/kamanda_login.md b/docs/content/commands/kamanda_login.md deleted file mode 100644 index 8b2a44a..0000000 --- a/docs/content/commands/kamanda_login.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "kamanda login" -slug: kamanda_login -url: /commands/kamanda_login/ -summary: "Log kamanda into firebase" ---- -## kamanda login - -Log kamanda into firebase - -### Synopsis - -This allows Kamanda to administer your Firebase Project. -You can use --no-localhost flag if you are on environment without a browser. - -``` -kamanda login [flags] -``` - -### Examples - -``` -kamanda login -``` - -### Options - -``` - -h, --help help for login - --no-localhost copy and paste a code instead of starting a local server for authentication -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda](/commands/kamanda/) - Kamanda is an extender Firebase Tools CLI - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/kamanda_login:ci.md b/docs/content/commands/kamanda_login:ci.md deleted file mode 100644 index e4031db..0000000 --- a/docs/content/commands/kamanda_login:ci.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "kamanda login:ci" -slug: kamanda_login:ci -url: /commands/kamanda_login:ci/ -summary: "generate an access token for use in non-interactive environments" ---- -## kamanda login:ci - -generate an access token for use in non-interactive environments - -### Synopsis - -generate an access token for use in non-interactive environments - -``` -kamanda login:ci [flags] -``` - -### Examples - -``` -kamanda login:ci -``` - -### Options - -``` - -h, --help help for login:ci - --no-localhost copy and paste a code instead of starting a local server for authentication -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda](/commands/kamanda/) - Kamanda is an extender Firebase Tools CLI - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/kamanda_logout.md b/docs/content/commands/kamanda_logout.md deleted file mode 100644 index c7e7202..0000000 --- a/docs/content/commands/kamanda_logout.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "kamanda logout" -slug: kamanda_logout -url: /commands/kamanda_logout/ -summary: "Logout kamanda from Firebase" ---- -## kamanda logout - -Logout kamanda from Firebase - -### Synopsis - -Logout kamanda from Firebase - -``` -kamanda logout [flags] -``` - -### Examples - -``` -kamanda logout -``` - -### Options - -``` - -h, --help help for logout -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda](/commands/kamanda/) - Kamanda is an extender Firebase Tools CLI - -###### Auto generated by spf13/cobra on 25-Apr-2020 diff --git a/docs/content/commands/kamanda_version.md b/docs/content/commands/kamanda_version.md deleted file mode 100644 index 0f3de69..0000000 --- a/docs/content/commands/kamanda_version.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "kamanda version" -slug: kamanda_version -url: /commands/kamanda_version/ -summary: "Version will output the current build information" ---- -## kamanda version - -Version will output the current build information - -### Synopsis - -Version will output the current build information - -``` -kamanda version [flags] -``` - -### Examples - -``` -kamanda version -kamanda version -o json -``` - -### Options - -``` - -h, --help help for version -``` - -### Options inherited from parent commands - -``` - --config string config file (default is $HOME/.kamanda/config.json) - -o, --output string The format in which data will be outputted in [text, json, yaml] - -P, --project string The firebase project to use (default "default") - --token string firebase token to use for authentication -``` - -### SEE ALSO - -* [kamanda](/commands/kamanda/) - Kamanda is an extender Firebase Tools CLI - -###### Auto generated by spf13/cobra on 25-Apr-2020