sindri
Version:
The Sindri Labs JavaScript SDK and CLI tool.
19 lines (17 loc) • 332 B
text/typescript
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Client input to change their password.
*/
export type PasswordChangeInput = {
/**
* Old password.
*/
old_password: string;
/**
* New password.
*/
new_password: string;
};