From 622c206db24e8f64b594e20d6fc4dc124f95e49c Mon Sep 17 00:00:00 2001 From: fangming-ning-sp <42616890+fangming-ning-sp@users.noreply.github.com> Date: Tue, 17 Jan 2023 14:49:49 -0600 Subject: [PATCH] PLTCONN-2597: Refactor change password input --- lib/commands/std-change-password.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/commands/std-change-password.ts b/lib/commands/std-change-password.ts index 0820037..3713e20 100644 --- a/lib/commands/std-change-password.ts +++ b/lib/commands/std-change-password.ts @@ -1,10 +1,11 @@ /* Copyright (c) 2023. SailPoint Technologies, Inc. All rights reserved. */ +import { ObjectInput } from "./command" + /** * Input object of `std:change-password` command */ -export type StdChangePasswordInput = { - username: string +export type StdChangePasswordInput = ObjectInput & { password: string }