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 }