import { WhereConditions } from "../enums/where-conditions"; export interface PasswordChangeRequestModel { table: string; passwordField: string; where: { [key in WhereConditions]?: Array<{ source: string; value: string | number | boolean; }>; }; body: { Value: string; }; }