diff --git a/.changeset/witty-rockets-fetch.md b/.changeset/witty-rockets-fetch.md new file mode 100644 index 00000000..a8f73852 --- /dev/null +++ b/.changeset/witty-rockets-fetch.md @@ -0,0 +1,5 @@ +--- +"composable-cli": patch +--- + +hide Klevu rest auth key as \* masked during input diff --git a/packages/composable-cli/src/commands/integration/klevu/klevu-integration-command.tsx b/packages/composable-cli/src/commands/integration/klevu/klevu-integration-command.tsx index 55a9ba2e..3758fcd1 100644 --- a/packages/composable-cli/src/commands/integration/klevu/klevu-integration-command.tsx +++ b/packages/composable-cli/src/commands/integration/klevu/klevu-integration-command.tsx @@ -323,7 +323,8 @@ async function klevuOptionsPrompts( if (!argsRestAuthKey) { const { klevuRestAuthKey } = await inquirer.prompt([ { - type: "string", + type: "password", + mask: "*", name: "klevuRestAuthKey", message: "What is your Klevu rest auth key?", },